#filtro-container {
    display: flex; 
    gap: 1rem; 
    margin-bottom: 1rem;
    justify-content: center;
}

#tabela-container {
    margin-top: 2rem;
}

#filtro-container label {
    font-weight: bold;
}

h2 {
    text-align: center;
    margin-bottom: 1.2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead tr {
    background-color: #2d89ef;
    color: white;
}

table thead th {
    padding: 0.3rem;
    text-align: left;
}

table tbody td {
    font-size: 0.8rem;
    padding: 0.3rem;
    word-wrap: break-word;
    max-width: 150px;
}

table tbody td:nth-child(4) {
    text-align: right;
}

#resumo {
    margin-top: 1.5rem;
    font-weight: bold;
    text-align: right;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    table tbody td {
        font-size: 0.7rem;
        padding: 0.2rem;
        max-width: 100px;
    }
    
    table thead th {
        font-size: 0.8rem;
        padding: 0.2rem;
    }
    
    #filtro-container {
        flex-direction: row;
        gap: 0.5rem;
    }
}

#filtro-container input[type="date"] {
    width: 160px;
    height: 2.2rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 0.3rem 0.7rem;
    box-sizing: border-box;
}