/* =========================================================
   ALERTAS.CSS - Tema para Camada de Alertas
   Projeto: MPPE Caatinga Resiste 2026
========================================================= */

/* ===== CORES DO TEMA ===== */
.theme-alertas {
    --theme-primary: #FF6F00;
    --theme-light: #FFB74D;
    --theme-dark: #E65100;
    --theme-header: #1a4d2e;
    --theme-bg: #fff3e0;
}

/* ===== ESTILO DA CAMADA ===== */
.layer-alertas {
    color: var(--theme-primary);
    weight: 2;
    fillOpacity: 0.2;
    dashArray: '4, 4';
}

.layer-alertas:hover {
    color: var(--theme-dark);
    weight: 3;
}

/* ===== TOOLTIP ESPECÍFICO ===== */
.tooltip-container.alertas .tooltip-info-value.highlight {
    background-color: var(--theme-bg);
    font-weight: bold;
    color: var(--theme-dark);
    font-size: var(--font-size-base);
    border-left-color: var(--theme-primary);
}

/* ===== BADGE DO TEMA ===== */
.badge-alertas {
    background-color: var(--theme-bg);
    color: var(--theme-dark);
    border: 1px solid var(--theme-light);
}

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

.list-container.alertas .badge-count {
    background: var(--theme-primary);
}