:root {
    --primary: #2563eb; 
    --primary-dark: #1e40af;
    --surface: #ffffff; 
    --bg: #f8fafc;
    --text: #0f172a; 
    --text-light: #64748b;
    --border: #e2e8f0;
}

body { 
    background-color: var(--bg); 
    font-family: 'Inter', sans-serif; 
    color: var(--text); 
    margin: 0;
}

.badge-beta {
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    padding: 2px 8px;
    border-radius: 6px;
    vertical-align: middle;
    margin-left: 12px;
    letter-spacing: 0.5px;
    transform: translateY(-4px);
    display: inline-block;
}

.hero-container { 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    background: white; 
    padding: 20px;
    text-align: center;
}

.brand-hero { 
    font-size: 3.5rem; 
    font-weight: 800; 
    color: #1e293b; 
    letter-spacing: -2px; 
    line-height: 1; 
    margin-bottom: 15px;
}
.brand-tld { color: var(--primary); }

.claim-primary {
    font-size: 1.1rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 40px;
    letter-spacing: -0.2px;
    max-width: 500px;
    line-height: 1.4;
}

.search-wrapper { 
    width: 100%; 
    max-width: 580px; 
    position: relative; 
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.search-input { 
    width: 100%; 
    padding: 20px 25px; 
    border-radius: 50px; 
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 1.15rem; 
    outline: none; 
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); 
    text-align: center; 
}

.search-input:focus { 
    border-color: transparent;
    box-shadow: 
        0 0 0 4px rgba(255, 255, 255, 1), 
        0 0 20px rgba(37, 99, 235, 0.3), 
        0 0 40px rgba(168, 85, 247, 0.2), 
        0 0 60px rgba(236, 72, 153, 0.2); 
    transform: scale(1.01);
}

.search-input::placeholder { color: #94a3b8; font-weight: 400; transition: color 0.3s; }
.search-input:focus::placeholder { color: #cbd5e1; }
.search-input.open { border-radius: 24px 24px 0 0; box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1); }

#suggestions { 
    text-align: left; 
    border-radius: 0 0 24px 24px; 
    margin-top: 0; 
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.1);
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    z-index: 90;
    overflow: hidden;
    display: none;
    padding-bottom: 10px;
}

.suggestion-item { padding: 14px 25px; cursor: pointer; display: flex; gap: 15px; align-items: center; transition: background 0.1s; border-bottom: 1px solid #f8fafc; }
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background-color: #f8fafc; }

.btn-compare-float {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #e0e7ff;
    color: #3730a3;
    border: 1px solid #c7d2fe;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}
.btn-compare-float:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); border-color: #a5b4fc; background: #c7d2fe; color: #1e3a8a; }

.hero-disclaimer { margin-top: 60px; font-size: 0.7rem; color: #cbd5e1; max-width: 450px; line-height: 1.4; }

.top-nav { background: white; border-bottom: 1px solid var(--border); padding: 15px 40px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 999; box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }

.navbar-universal {
    height: 64px;
    padding: 0 16px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky; 
    top: 0;
    z-index: 1000;
}

.brand-nav {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.user-pill-nav {
    display: flex;
    align-items: center;
    background: #f1f5f9;
    padding: 4px 4px 4px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid #e2e8f0;
}
.user-pill-nav a { text-decoration: none; color: #334155; }
.user-pill-nav .btn-logout {
    width: 28px; height: 28px;
    background: #ffffff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #ef4444;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    margin-left: 8px;
}

.main-content { 
    max-width: 1320px; 
    margin: 40px auto; 
    padding: 0 20px; 
    display: flex;
    flex-direction: column;
    gap: 30px; 
}

.card-modern { 
    background: white; 
    border-radius: 16px; 
    border: 1px solid var(--border); 
    box-shadow: 0 1px 2px rgba(0,0,0,0.03); 
    padding: 25px; 
    position: relative;
    overflow: visible !important;
}

.card-clip { 
    overflow: hidden; 
    display: flex;         
    flex-direction: column; 
}

.table-surprising { 
    width: 100%; 
    border-collapse: separate; 
    border-spacing: 0; 
    margin-bottom: 0; 
}

.section-header { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; color: var(--text-light); letter-spacing: 0.05em; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }

.info-icon {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    cursor: help;
    color: #94a3b8;
    margin-left: 5px;
    font-size: 0.9rem;
    transition: color 0.2s;
    z-index: 50; 
}
.info-icon:hover { color: var(--primary); }

.info-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    width: 220px;
    padding: 12px;
    background-color: #1e293b;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.4);
    z-index: 99999; 
    pointer-events: none; 
    white-space: normal;
}

.info-icon:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    border: 6px solid transparent;
    border-top-color: #1e293b;
    z-index: 99999;
    pointer-events: none;
}

.geo-header-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    background: white; 
    border: 1px solid var(--border); 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.geo-cell { padding: 18px 24px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; position: relative; background: white; }
.geo-subtitle { font-size: 0.75rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.geo-header-grid .geo-cell:nth-child(4n) { border-right: none; } 
.geo-header-grid .geo-cell:nth-last-child(-n+4) { border-bottom: none; }
.geo-lbl { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: #94a3b8; letter-spacing: 0.05em; margin-bottom: 4px; display:flex; align-items:center; gap:6px; }
.geo-val { font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.cell-admin { background: #f8fafc; }
.admin-impact { font-size: 0.75rem; font-weight: 700; color: var(--primary); background: #dbeafe; padding: 2px 8px; border-radius: 4px; display: inline-block; }
.geo-title-block { grid-column: 1 / -1; padding: 25px 30px; background: #f8fafc; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap:10px; }
.badge-capoluogo { background: #dbeafe; color: #1e40af; font-size: 0.75rem; padding: 4px 10px; border-radius: 6px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; vertical-align: middle; margin-left: 10px; }

.bench-grid-2x2 { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 25px; 
}

.bench-box { border: 1px solid var(--border); border-radius: 12px; padding: 20px; background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.02); transition: transform 0.2s; }
.bench-box:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.bench-header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; border-bottom: 1px solid #f1f5f9; padding-bottom: 10px; }

.bench-title { 
    font-weight: 600; 
    font-size: 0.8rem; 
    color: var(--text-light); 
    text-transform: uppercase; 
    letter-spacing: 0.08em;
}

.bench-icon { font-size: 1rem; color: #94a3b8; }
.bench-row { margin-bottom: 12px; }
.bench-meta { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.85rem; align-items: center; }
.bench-score-sub { font-weight: 600; color: var(--text-light); font-size: 0.85rem; }
.progress-rail { height: 6px; background: #f1f5f9; border-radius: 3px; overflow: hidden; }
.progress-bar { height: 100%; border-radius: 3px; }
.bg-city { background-color: var(--primary); }
.bg-ref { background-color: #cbd5e1; }
.delta-pill { font-size: 0.65rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 6px; vertical-align: middle; }
.std-pos { background: #dcfce7; color: #15803d; } .std-neg { background: #fee2e2; color: #b91c1c; }
.inv-pos { background: #fee2e2; color: #b91c1c; } .inv-neg { background: #dcfce7; color: #15803d; } 

.bench-header-flex + .bench-row .text-primary {
    font-size: 2.6rem !important;  
    font-weight: 900 !important;   
    letter-spacing: -2px;         
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
}

.target-grid { 
    display: grid; 
    gap: 12px; 
    grid-template-columns: repeat(6, 1fr); 
}
.target-box { padding: 12px 5px; border-radius: 12px; text-align: center; border: 1px solid transparent; }

.t-head { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 6px; opacity: 0.9; letter-spacing: 0.5px; }

.t-num { 
    font-size: 2.2rem; 
    font-weight: 900; 
    line-height: 1; 
    margin-bottom: 8px; 
    letter-spacing: -1.5px; 
}

.t-desc { font-size: 0.8rem; font-weight: 600; opacity: 0.8; }

.t-elite { background: #f5f3ff; color: #5b21b6; border-color: #ddd6fe; }
.t-manager { background: #eff6ff; color: #1e40af; border-color: #bfdbfe; }
.t-middle { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }
.t-low-mid { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.t-low { background: #fff1f2; color: #be123c; border-color: #fecdd3; }
.t-poverty { background: #f8fafc; color: #475569; border-color: #e2e8f0; }

.table-surprising { width: 100%; border-collapse: separate; border-spacing: 0; }
.table-surprising th { text-align: left; font-size: 0.75rem; text-transform: uppercase; color: var(--text-light); font-weight: 700; border-bottom: 1px solid var(--border); padding: 15px 20px; }
.table-surprising td { padding: 12px 20px; border-bottom: 1px solid #f8fafc; font-size: 0.95rem; vertical-align: middle; background: white; transition: 0.2s; }
.tr-hover:hover td { background: #f8fafc; transform: scale(1.01); border-bottom-color: transparent; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.text-male { color: #2563eb; } .text-female { color: #db2777; }
.badge-demo { display: block; width: fit-content; margin-top: 4px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; padding: 2px 8px; border-radius: 6px; letter-spacing: 0.05em; }
.bg-teal-100 { background: #ccfbf1; color: #115e59; } .bg-indigo-100 { background: #e0e7ff; color: #3730a3; }
.bg-blue-100 { background: #dbeafe; color: #1e40af; } .bg-violet-100 { background: #ede9fe; color: #5b21b6; }
.bg-rose-100 { background: #ffe4e6; color: #9f1239; }
.tfoot-huge td { background: #eff6ff; border-top: 3px solid var(--primary); padding: 25px 20px !important; }
.mini-bar-wrap { width: 50px; height: 5px; background: #f1f5f9; border-radius: 3px; margin-top: 5px; }
.mini-bar { height: 100%; border-radius: 3px; }
.mb-m { background: #60a5fa; } .mb-f { background: #f472b6; }

.omi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 20px;
}

.omi-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s;
}
.omi-box:hover { transform: translateY(-3px); box-shadow: 0 10px 20px -5px rgba(0,0,0,0.05); }

.omi-box::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
}
.omi-buy::before { background: #f97316; }   
.omi-rent::before { background: #0ea5e9; }  
.omi-yield::before { background: #10b981; } 
.omi-comm::before { background: #8b5cf6; } 

.omi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.omi-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}
.omi-icon {
    font-size: 1.1rem;
    opacity: 0.3;
}
.omi-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 5px;
}
.omi-sub {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}
.omi-trend {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
}
.trend-up { background: #dcfce7; color: #166534; }

@media (max-width: 768px) {
    .omi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1200px) {
    .target-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) { 
    .geo-header-grid { grid-template-columns: repeat(2, 1fr); } 
    .geo-header-grid .geo-cell:nth-child(2n) { border-right: none; }
}
@media (max-width: 576px) {
    .geo-header-grid { grid-template-columns: 1fr; }
    .target-grid { grid-template-columns: repeat(2, 1fr); }
    .bench-grid-2x2 { grid-template-columns: 1fr; }
    .brand-hero { font-size: 2.5rem; }
}

.btn-neighbor {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: #94a3b8;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 8px;
}
.btn-neighbor:hover {
    background: #eff6ff;
    color: var(--primary);
    border-color: #bfdbfe;
    transform: scale(1.1);
}

.tr-current {
    background-color: #fffbeb !important; 
    font-weight: 700;
    color: #b45309;
}
.tr-current td {
    border-bottom-color: #fde68a !important;
}

.modal-header { border-bottom: 1px solid #f1f5f9; background: #f8fafc; border-radius: 16px 16px 0 0; }
.modal-content { border: none; border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.btn-neighbor, .info-icon {
    border: 2px solid #a36371 !important; 
    background: #fdf2f4 !important;      
    color: #a36371 !important;           
    width: 26px !important;              
    height: 26px !important;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-neighbor:hover, .info-icon:hover {
    background: #a36371 !important;
    color: #ffffff !important;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(163, 99, 113, 0.3);
}

.info-icon {
    font-size: 0.75rem;
    cursor: help;
    margin-left: 8px;
}

@media (max-width: 576px) {
    .top-nav {
        padding: 10px 20px; 
        justify-content: center; 
    }
    .brand-nav {
        font-size: 1.3rem; 
    }
}

.mobile-action-bar {
    background: white;
    padding: 10px 20px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 71px; 
    z-index: 990;
    display: none; 
    box-shadow: 0 4px 6px -2px rgba(0,0,0,0.03);
}

.auth-pill {
    position: absolute; top: 20px; right: 20px; z-index: 1100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    padding: 5px 5px 5px 15px;
    border-radius: 50px;
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; font-weight: 500; color: #334155;
    text-decoration: none; transition: all 0.2s ease;
}
.auth-pill:hover { background: white; transform: translateY(-1px); box-shadow: 0 5px 15px rgba(0,0,0,0.08); color: #0f172a; }
.auth-avatar { width: 28px; height: 28px; background: #e2e8f0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: #64748b; }
.auth-action { background: #0f172a; color: white; padding: 6px 14px; border-radius: 20px; font-weight: 600; font-size: 0.75rem; }

@media (max-width: 576px) {
    .mobile-action-bar { display: block; }
    .btn-header-desktop { display: none !important; }
}

.kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
@media(min-width: 768px) { .kpi-grid { grid-template-columns: repeat(4, 1fr); } }

.kpi-card { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 15px; text-align: center; }
.kpi-val { font-size: 1.4rem; font-weight: 800; color: #0f172a; line-height: 1.2; }
.kpi-lbl { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.kpi-icon { font-size: 1.2rem; margin-bottom: 8px; color: var(--primary); opacity: 0.8; }

.econ-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.econ-table th { text-align: left; padding: 10px; background: #f1f5f9; color: #475569; font-weight: 600; font-size: 0.75rem; text-transform: uppercase; }
.econ-table td { padding: 10px; border-bottom: 1px solid #f1f5f9; color: #334155; }
.econ-table tr:last-child td { border-bottom: none; }
.econ-code { font-family: 'Roboto Mono', monospace; font-weight: 700; color: var(--primary); background: #e0e7ff; padding: 2px 6px; border-radius: 4px; font-size: 0.75rem; margin-right: 8px; }

.blur-overlay { position: relative; overflow: hidden; }
.blur-content { filter: blur(6px); user-select: none; pointer-events: none; opacity: 0.6; }
.blur-cta { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 10; width: 90%; max-width: 320px; }

.kpi-sector-box {
    height: 45px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.kpi-sector-text { 
    font-size: 0.75rem; 
    font-weight: 700; 
    line-height: 1.1; 
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.accordion-button:not(.collapsed) { background-color: #f1f5f9; color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: rgba(0,0,0,.125); }
.accordion-button { font-weight: 600; font-size: 0.9rem; color: #334155; }
.accordion-item { border: none; border-bottom: 1px solid #e2e8f0; }
.accordion-item:last-child { border-bottom: none; }

.chart-container { position: relative; height: 250px; width: 100%; }

.pro-lock-box {
    background: #f8fafc; border: 1px dashed #cbd5e1; border-radius: 12px;
    padding: 30px; text-align: center; color: #64748b; margin-top: 20px;
}

.fw-black { font-weight: 900 !important; }
.ls-1 { letter-spacing: 1px !important; }
.fs-7 { font-size: 0.75rem !important; }

.card-modern .rounded-4.shadow-sm {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border);
}
.card-modern .rounded-4.shadow-sm:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -6px rgba(0,0,0,0.08) !important;
    border-color: #cbd5e1;
}

.card-modern .bg-light.border.rounded-3 {
    transition: all 0.2s ease;
    border-color: #f1f5f9;
}
.card-modern .bg-light.border.rounded-3:hover {
    transform: translateY(-2px);
    background-color: #ffffff !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.badge.bg-success-subtle { color: #065f46 !important; background-color: #d1fae5 !important; border-color: #a7f3d0 !important; }
.badge.bg-primary-subtle { color: #1e40af !important; background-color: #dbeafe !important; border-color: #bfdbfe !important; }
.badge.bg-warning-subtle { color: #92400e !important; background-color: #fef3c7 !important; border-color: #fde68a !important; }
.badge.bg-danger-subtle  { color: #991b1b !important; background-color: #fee2e2 !important; border-color: #fecaca !important; }
.badge.bg-info-subtle    { color: #075985 !important; background-color: #e0f2fe !important; border-color: #bae6fd !important; }

.btn-header-info {
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}
.btn-header-info:hover {
    color: var(--primary);
}

.score-label {
    white-space: normal !important;       
    line-height: 1.1 !important;          
    text-align: center;
    display: inline-flex;                
    align-items: center;
    justify-content: center;
    min-height: 24px;                     
}

@media (max-width: 576px) {
    .score-label {
        font-size: 0.6rem !important;     
        padding: 4px 8px !important;      
        width: 100%;                      
    }
}
.card-provincial {
    border: 2px solid #fecaca !important; 
    background-color: #fffbfb;            
    position: relative;
}


.text-provincial {
    color: #991b1b !important; 
}

.badge-prov-warning {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}