body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #f8f9fa;
}

/* -------- CABEÇALHO GERAL -------- */
header {
    background: linear-gradient(90deg, #0b7043, #1c9b63);
}

/* -------- ÍCONES PADRÃO (VERDES) -------- */
a i {
    color: #0b7043;
    transition: transform 0.2s, color 0.2s;
}

a i:hover {
    color: #02603D;
    transform: scale(1.2);
}

/* -------- TABELAS GERAIS -------- */
.table th,
.table td {
    vertical-align: middle;
}

/* -------- RESPONSIVIDADE GERAL -------- */
@media (max-width: 992px) {
    table thead {
        display: none;
    }

    table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        border: none;
        border-bottom: 1px solid #dee2e6;
        padding: 0.75rem;
    }

    table tbody td::before {
        /* Cor de etiqueta padrão (verde) */
        content: attr(data-label);
        font-weight: 600;
        color: #198754;
    }

    table tr {
        display: block;
        margin-bottom: 1rem;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }
}