/* =========================================================
   EMBARGOS.CSS - Tema para Embargos IBAMA
   Projeto: MPPE Caatinga Resiste 2026
========================================================= */

/* ===== CORES DO TEMA ===== */
.theme-embargos {
    --theme-primary: #B22222;
    --theme-light: #FF6B6B;
    --theme-dark: #8B0000;
    --theme-bg: #ffebee;
}

/* ===== ESTILO DA CAMADA ===== */
.layer-embargos {
    color: var(--theme-primary);
    weight: 2;
    opacity: 0.8;
    fillColor: var(--theme-light);
    fillOpacity: 0.2;
    dashArray: '5, 3';
}

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

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

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

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

.list-container.embargos .list-table tbody tr.selected {
    background-color: #ffcdd2;
}

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

/* ===== DESTAQUE DE ÁREA ===== */
.tooltip-container.embargos .tooltip-info-value.area-destaque {
    background-color: var(--theme-bg);
    font-weight: bold;
    color: var(--theme-primary);
}