body {
    font-family: 'Roboto', sans-serif;
    background: #f8f9fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 30px;
}

h1 {
    color: #00AEEF;
}

h2 {
    margin-top: 40px;
    color: #00AEEF;
}

.logo {
    width: 150px;
}

form {
    margin: 20px 0;
}

select, input[type="date"], button {
    padding: 8px;
    margin-right: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

button {
    background: #00AEEF;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #007FA3;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.table th, .table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.table th {
    background: #00AEEF;
    color: #fff;
    text-align: center;
    vertical-align: middle;
}

.error {
    color: red;
    margin-top: 10px;
}

td.text-center {
  text-align: center;
}