body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    background-image: url('img/background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #333;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 800px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

header h1 {
    color: #e10600;
    text-align: center;
    text-shadow: #8d8c8c 2px 2px 4px  ;
}

header p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

 .controles {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
 }

 .controles input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100px;
 }

 .controles button {
    padding: 10px 20px;
    background-color: #e10600;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
 }

 .controles button:hover {
    background-color: #b30000;
 }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-right: 1px solid #ddd;
}

th {
    background-color: #333;
    color: white;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

tbody tr:nth-child(even) {
    background-color: #f8f8f8;
}

tbody tr:hover {
    background-color: #ffe6e6;
    cursor: default;
}

#loading {
    text-align: center;
    font-weight: bold;
    color: #666;
    margin-top: 20px;
    font-style: italic;
}

.ano-selector-container {
    position: relative;
    width: 250px;
}

#ano-filtro-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.dropdown-anos {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dropdown-anos li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.dropdown-anos li:hover {
    background-color: #e10600;
    color: white;
    transition: all 0.3s ease;
}

.linha-especial {
    background-color: #e0e0e0 !important;
    color: #777;                          
    font-style: italic;                   
}

.linha-especial:hover {
    background-color: #d6d6d6 !important;
}