/* =========================================================
   UC.CSS - Tema para Unidades de Conservação
   Projeto: MPPE Caatinga Resiste 2026
========================================================= */

/* ===== CORES DO TEMA ===== */
.theme-uc {
    --theme-primary: #2e7d32;
    --theme-light: #4caf50;
    --theme-dark: #1b5e20;
    --theme-bg: #e8f5e9;
}

/* ===== ESTILO DA CAMADA ===== */
.layer-uc {
    color: var(--theme-primary);
    weight: 2;
    fillOpacity: 0;
    opacity: 1;
}

.layer-uc:hover {
    color: var(--theme-light);
    weight: 3;
}

/* ===== LISTA ESPECÍFICA ===== */
.list-container.uc .list-table th {
    background: var(--theme-primary);
}

.list-container.uc .list-table tbody tr:hover {
    background-color: var(--theme-bg);
}

.list-container.uc .list-table tbody tr.selected {
    background-color: #c8e6c9;
}