.records {
    width: 100%;
    user-select: none;
    text-align: left;
    border-collapse: collapse;
}

.records th {
    height: 50px;
    background-color: var(--primary-color);
    padding-left: 20px;
    font-size: 1.2rem;
    color: white; /* Garante que o texto seja legível no fundo escuro */
}

.records td {
    height: 50px;
    padding-left: 20px;
    font-size: 1rem; /* Ajusta o tamanho da fonte para melhor legibilidade */
}

.records th:last-child,
.records td:last-child {
    padding: 0;
    min-width: 140px;
    text-align: center;
}

.records tr:hover {
    background-color: var(--secondary-color);
}

/* Responsividade */
@media (max-width: 480px) {
    .records {
        border-spacing: 5px;
    }

    .records thead {
        display: none;
    }

    .records tr {
        box-shadow: 0 1px 3px var(--shadow-color);
        margin-bottom: 10px;
        display: block;
        background-color: white;
        border-radius: 8px;
    }

    .records td {
        display: flex;
        justify-content: space-between;
        padding: 10px 20px;
        margin: 0;
    }

    .records td::before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: capitalize;
        margin-right: 10px;
    }

    .records tr:hover {
        background-color: inherit;
    }
}