/* _content/OsservatorioPolitico/Components/Layout/MainLayout.razor.rz.scp.css */
/* --- BARRA SUPERIORE UTILITY --- */
.top-utility-bar[b-4iclo7akmg] {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 0.5rem; /* Padding ridotto per mobile */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.8rem;
    color: #64748b;
    flex-shrink: 0;
    z-index: 1040;
    position: relative;
}

    /* Stile Link Desktop */
    .top-utility-bar a.nav-link[b-4iclo7akmg] {
        color: #64748b;
        text-decoration: none;
        margin-left: 1.5rem;
        transition: color 0.2s;
        padding: 0;
    }

        .top-utility-bar a.nav-link:hover[b-4iclo7akmg] {
            color: #0f172a;
        }

/* --- MENU MOBILE INFO (Dropdown) --- */
.mobile-info-menu[b-4iclo7akmg] {
    position: absolute;
    top: 35px; /* Subito sotto il bottone */
    right: 10px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    min-width: 180px;
    z-index: 2000; /* Sopra tutto */
    padding: 0.5rem 0;
    animation: fadeIn-b-4iclo7akmg 0.2s ease-out;
}

    .mobile-info-menu .dropdown-item[b-4iclo7akmg] {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        color: #333;
        border-bottom: 1px solid #f5f5f5;
    }

        .mobile-info-menu .dropdown-item:last-child[b-4iclo7akmg] {
            border-bottom: none;
        }

        .mobile-info-menu .dropdown-item:active[b-4iclo7akmg],
        .mobile-info-menu .dropdown-item:hover[b-4iclo7akmg] {
            background-color: #f0f7ff;
            color: #0d6efd;
        }

/* Backdrop invisibile per chiudere cliccando fuori */
.menu-backdrop[b-4iclo7akmg] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1999; /* Sotto il menu, sopra il resto */
    background: transparent;
}

@keyframes fadeIn-b-4iclo7akmg {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- LAYOUT PRINCIPALE --- */
.page[b-4iclo7akmg] {
    display: flex;
    flex-direction: column !important;
    height: 100vh;
    overflow: hidden;
}

article.content[b-4iclo7akmg] {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #f8fafc;
}

[b-4iclo7akmg] .main-navbar {
    flex-shrink: 0;
    z-index: 1030;
}

/* --- FIX MOBILE (SBLOCCO SCROLL) --- */
@media (max-width: 991.98px) {
    .page[b-4iclo7akmg] {
        height: auto !important;
        overflow: visible !important;
        display: block !important;
    }

    article.content[b-4iclo7akmg] {
        height: auto !important;
        overflow: visible !important;
        flex-grow: 0;
    }

    [b-4iclo7akmg] .main-navbar {
        position: sticky;
        top: 0;
        z-index: 1060;
    }
}
/* _content/OsservatorioPolitico/Components/Layout/NavMenu.razor.rz.scp.css */
/* Rimuoviamo gli stili precedenti */
:host[b-7oze6v0qso] {
    display: block;
    height: auto;
    background-color: transparent;
}

.navbar[b-7oze6v0qso] {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.nav-item[b-7oze6v0qso] {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

    .nav-item[b-7oze6v0qso]  a {
        color: #0d6efd;
        padding: 0.5rem 0.75rem;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 3px solid transparent;
        font-weight: 500;
        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    }

        .nav-item[b-7oze6v0qso]  a i {
            font-size: 1.1rem;
            margin-top: -2px;
            color: #0d6efd;
        }

        .nav-item[b-7oze6v0qso]  a:hover {
            background-color: #e7f1ff;
            color: #004085;
        }

            .nav-item[b-7oze6v0qso]  a:hover i {
                color: #004085;
            }

        .nav-item[b-7oze6v0qso]  a.active {
            background-color: transparent;
            color: #0d6efd;
            font-weight: 600;
            border-bottom: 3px solid #0d6efd;
            border-radius: 0;
        }

            .nav-item[b-7oze6v0qso]  a.active i {
                color: #0d6efd;
            }

/* --- MENU INFO MOBILE --- */
.mobile-info-dropdown[b-7oze6v0qso] {
    position: absolute;
    top: 45px;
    right: 0;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    min-width: 180px;
    z-index: 2000;
    padding: 0.5rem 0;
    animation: fadeIn-b-7oze6v0qso 0.2s ease-out;
}

    .mobile-info-dropdown .dropdown-item[b-7oze6v0qso] {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        color: #333;
        border-bottom: 1px solid #f5f5f5;
    }

        .mobile-info-dropdown .dropdown-item:last-child[b-7oze6v0qso] {
            border-bottom: none;
        }

.menu-backdrop[b-7oze6v0qso] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1999; /* Sotto il dropdown ma sopra il resto */
    background: transparent;
}

@keyframes fadeIn-b-7oze6v0qso {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 991.98px) {
    .navbar-collapse.show[b-7oze6v0qso] {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        z-index: 1050;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        padding: 1rem;
        padding-bottom: 5rem !important;
    }

    .navbar-nav[b-7oze6v0qso] {
        gap: 10px;
        width: 100%;
        padding-bottom: 2rem;
    }

    .nav-item[b-7oze6v0qso]  a {
        border-bottom: none;
        background-color: rgba(255,255,255,0.5);
        padding: 12px 15px;
        width: 100%;
        justify-content: center;
    }

        .nav-item[b-7oze6v0qso]  a.active {
            background-color: #e7f1ff;
            border-left: 4px solid #0d6efd;
            border-bottom: none;
        }
}
/* _content/OsservatorioPolitico/Components/Pages/Anagrafica.razor.rz.scp.css */
/* --- DESKTOP (> 992px) --- */
@media (min-width: 992px) {
    .gestione-container[b-3z54g8ptsi] {
        height: calc(100vh - 90px);
        overflow: hidden;
    }

    #filter-sidebar[b-3z54g8ptsi] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fdfdfd;
        border-right: 1px solid #e0e0e0;
    }

    #data-content[b-3z54g8ptsi] {
        height: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
    }

    .content-scrollable[b-3z54g8ptsi] {
        flex-grow: 1;
        overflow-y: auto;
        padding: 1.5rem;
    }
}

/* --- MOBILE (< 992px) --- */
@media (max-width: 991.98px) {
    .gestione-container[b-3z54g8ptsi] {
        position: relative;
        height: auto;
        overflow: visible;
    }

    /* MENU RICERCA OFFCANVAS */
    #filter-sidebar[b-3z54g8ptsi] {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        z-index: 2000;
        transform: translateX(-110%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
    }

        #filter-sidebar.mobile-open[b-3z54g8ptsi] {
            transform: translateX(0);
        }

    /* Overlay scuro */
    .sidebar-backdrop[b-3z54g8ptsi] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 1990;
        display: none;
    }

        .sidebar-backdrop.show[b-3z54g8ptsi] {
            display: block;
        }

    #data-content[b-3z54g8ptsi] {
        min-height: 500px;
        background-color: #fff;
    }

    /* Migliora leggibilità tabelle su mobile */
    .table[b-3z54g8ptsi] {
        font-size: 0.9rem;
    }
}

/* --- STILI COMUNI --- */
.sticky-top-title[b-3z54g8ptsi] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    padding: 1rem;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-content[b-3z54g8ptsi] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Lista Risultati */
.list-group-item[b-3z54g8ptsi] {
    border: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .list-group-item:hover[b-3z54g8ptsi] {
        background-color: #f8f9fa;
    }

    .list-group-item.active[b-3z54g8ptsi] {
        background-color: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }

        .list-group-item.active .text-muted[b-3z54g8ptsi] {
            color: rgba(255,255,255,0.8) !important;
        }

/* Icona placeholder */
.icon-user-search[b-3z54g8ptsi] {
    font-size: 4rem;
    color: #dee2e6;
}
/* _content/OsservatorioPolitico/Components/Pages/Europee.razor.rz.scp.css */
@media (min-width: 992px) {
    .politiche-container[b-5l4wjmg6lq] {
        height: calc(100vh - 120px);
        overflow: hidden;
    }

    #filter-sidebar[b-5l4wjmg6lq] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fdfdfd;
        border-right: 1px solid #e0e0e0;
    }

    #map-container[b-5l4wjmg6lq] {
        height: 100%;
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .politiche-container[b-5l4wjmg6lq] {
        position: relative;
        height: auto;
        overflow: visible;
    }

    [b-5l4wjmg6lq] .info.legend {
        display: none !important;
    }

    #filter-sidebar[b-5l4wjmg6lq] {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        z-index: 2000;
        transform: translateX(-110%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
    }

        #filter-sidebar.mobile-open[b-5l4wjmg6lq] {
            transform: translateX(0);
        }

    .sidebar-backdrop[b-5l4wjmg6lq] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 1990;
        display: none;
    }

        .sidebar-backdrop.show[b-5l4wjmg6lq] {
            display: block;
        }

    #map-container[b-5l4wjmg6lq] {
        height: 60vh;
        min-height: 400px;
        width: 100%;
        border-radius: 8px;
        margin-top: 1rem;
    }
}

.sticky-top-title[b-5l4wjmg6lq] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-content[b-5l4wjmg6lq] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
}

.sticky-bottom-controls[b-5l4wjmg6lq] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    border-top: 1px solid #e0e0e0;
    padding: 1rem;
}

.accordion-button[b-5l4wjmg6lq] {
    font-weight: 600;
    padding: 0.75rem 1rem;
    background-color: #f9f9f9;
    color: #333;
}

    .accordion-button:not(.collapsed)[b-5l4wjmg6lq] {
        background-color: #eef;
        color: #000;
    }

.map-container-styled[b-5l4wjmg6lq] {
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.map-wrapper[b-5l4wjmg6lq] {
    position: relative;
    height: 100%;
    width: 100%;
}

.map-overlay[b-5l4wjmg6lq] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.empty-state-content[b-5l4wjmg6lq] {
    text-align: center;
    color: #6c757d;
    padding: 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
}
/* _content/OsservatorioPolitico/Components/Pages/GestioneDati.razor.rz.scp.css */
/* --- DESKTOP (> 992px) --- */
@media (min-width: 992px) {
    .gestione-container[b-6mf4pylhoi] {
        height: calc(100vh - 90px);
        overflow: hidden;
    }

    #filter-sidebar[b-6mf4pylhoi] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fdfdfd;
        border-right: 1px solid #e0e0e0;
    }

    #data-content[b-6mf4pylhoi] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fff;
    }

    .content-scrollable[b-6mf4pylhoi] {
        flex-grow: 1;
        overflow-y: auto;
        padding: 1.5rem;
    }
}

/* --- MOBILE (< 992px) --- */
@media (max-width: 991.98px) {
    .gestione-container[b-6mf4pylhoi] {
        position: relative;
        height: auto;
        overflow: visible;
    }

    /* MENU FILTRI OFFCANVAS */
    #filter-sidebar[b-6mf4pylhoi] {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        z-index: 2000;
        transform: translateX(-110%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
    }

        #filter-sidebar.mobile-open[b-6mf4pylhoi] {
            transform: translateX(0);
        }

    /* Overlay scuro */
    .sidebar-backdrop[b-6mf4pylhoi] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 1990;
        display: none;
    }

        .sidebar-backdrop.show[b-6mf4pylhoi] {
            display: block;
        }

    #data-content[b-6mf4pylhoi] {
        min-height: 500px;
        background-color: #fff;
    }
}

/* --- STILI COMUNI (Header e Filtri) --- */
.sticky-top-title[b-6mf4pylhoi] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    padding: 1rem;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .sticky-top-title h4[b-6mf4pylhoi] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: bold;
        color: #0d6efd; /* Blu primary coerente con le altre pagine */
    }

.filter-content[b-6mf4pylhoi] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
}

/* Stili Accordion Dati (Non toccati come richiesto) */
.accordion-button[b-6mf4pylhoi] {
    padding: 0.75rem 1rem;
    background-color: #fff;
    color: #333;
    font-size: 0.95rem;
}

    .accordion-button:not(.collapsed)[b-6mf4pylhoi] {
        background-color: #f0f7ff;
        color: #0d6efd;
        box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
    }

    .accordion-button:focus[b-6mf4pylhoi] {
        box-shadow: none;
        border-color: rgba(0,0,0,.125);
    }

.accordion-item[b-6mf4pylhoi] {
    border: none;
    border-bottom: 1px solid #e0e0e0;
}

/* Scrollbar Custom */
.content-scrollable[b-6mf4pylhoi]::-webkit-scrollbar {
    width: 6px;
}

.content-scrollable[b-6mf4pylhoi]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.content-scrollable[b-6mf4pylhoi]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
/* _content/OsservatorioPolitico/Components/Pages/Home.razor.rz.scp.css */
.home-container[b-8yh0r4iq2q] {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centra verticalmente */
    align-items: center; /* Centra orizzontalmente */
    /* Modifica chiave: min-height invece di height fissa */
    min-height: calc(100vh - 60px);
    width: 100%;
    text-align: center;
    padding: 2rem;
    background-color: rgb(252, 253, 253);
    /* Assicura che stia sotto al menu */
    position: relative;
    z-index: 1;
}

/* TITOLO BENVENUTO */
.main-title[b-8yh0r4iq2q] {
    font-weight: 800;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #0d6efd;
    letter-spacing: -1px;
}

/* SOTTOTITOLO */
.subtitle[b-8yh0r4iq2q] {
    font-size: 1.5rem;
    color: #64748b;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.5;
}

/* --- OTTIMIZZAZIONE MOBILE --- */
@media (max-width: 767.98px) {
    .home-container[b-8yh0r4iq2q] {
        padding: 1rem;
        min-height: 85vh; /* Forza l'altezza su mobile per coprire lo schermo */
        justify-content: flex-start; /* Sposta il contenuto un po' più in alto */
        padding-top: 20vh; /* Spazio dall'alto */
    }

    .main-title[b-8yh0r4iq2q] {
        font-size: 2.8rem; /* Ridotto */
        word-wrap: break-word;
        line-height: 1.1;
    }

    .subtitle[b-8yh0r4iq2q] {
        font-size: 1.1rem;
        padding: 0 0.5rem;
        margin-top: 1rem;
    }
}
/* _content/OsservatorioPolitico/Components/Pages/Login.razor.rz.scp.css */
.login-wrapper[b-1yuwcjx6n8] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; /* Centra verticalmente nello spazio disponibile */
    padding: 1rem;
    background-color: transparent; /* Usa il background del MainLayout */
}

.login-card[b-1yuwcjx6n8] {
    width: 100%;
    max-width: 400px; /* Larghezza massima su desktop */
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

/* --- Styling Input Moderno --- */
.input-group-text[b-1yuwcjx6n8] {
    background-color: #fff;
    border-right: none;
    color: #6c757d;
}

.form-control[b-1yuwcjx6n8] {
    border-left: none;
    box-shadow: none !important; /* Rimuove glow blu default di bootstrap */
    transition: border-color 0.2s;
}

/* Focus sull'intero gruppo input */
.input-group:focus-within .input-group-text[b-1yuwcjx6n8],
.input-group:focus-within .form-control[b-1yuwcjx6n8] {
    border-color: #0d6efd; /* Colore primario */
    color: #0d6efd;
}

.input-group:focus-within i[b-1yuwcjx6n8] {
    color: #0d6efd !important;
}

/* --- Icona Cerchio in alto --- */
.icon-circle[b-1yuwcjx6n8] {
    width: 60px;
    height: 60px;
    background-color: #e7f1ff; /* Blu molto chiaro */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.x-small[b-1yuwcjx6n8] {
    font-size: 0.8rem;
}

/* --- Animazione Ingresso --- */
.login-card[b-1yuwcjx6n8] {
    animation: slideUp-b-1yuwcjx6n8 0.4s ease-out;
}

@keyframes slideUp-b-1yuwcjx6n8 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/OsservatorioPolitico/Components/Pages/Politiche.razor.rz.scp.css */
/* --- DESKTOP (Schermi Grandi > 992px) --- */
@media (min-width: 992px) {
    .politiche-container[b-zxgfzfpmg7] {
        height: calc(100vh - 120px);
        overflow: hidden;
    }

    #filter-sidebar[b-zxgfzfpmg7] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fdfdfd;
        border-right: 1px solid #e0e0e0;
    }

    #map-container[b-zxgfzfpmg7] {
        height: 100%;
        width: 100%;
    }
}

/* --- MOBILE (Schermi Piccoli < 992px) --- */
@media (max-width: 991.98px) {
    .politiche-container[b-zxgfzfpmg7] {
        position: relative;
        height: auto;
        overflow: visible;
    }

    [b-zxgfzfpmg7] .info.legend {
        display: none !important;
    }
    /* La sidebar diventa un menu "Offcanvas" */
    #filter-sidebar[b-zxgfzfpmg7] {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        z-index: 2000;
        transform: translateX(-110%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
    }

        #filter-sidebar.mobile-open[b-zxgfzfpmg7] {
            transform: translateX(0);
        }

    .sidebar-backdrop[b-zxgfzfpmg7] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 1990;
        display: none;
    }

        .sidebar-backdrop.show[b-zxgfzfpmg7] {
            display: block;
        }

    #map-container[b-zxgfzfpmg7] {
        height: 60vh;
        min-height: 400px;
        width: 100%;
        border-radius: 8px;
        margin-top: 1rem;
    }
}

/* --- STILI COMUNI --- */
.sticky-top-title[b-zxgfzfpmg7] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-content[b-zxgfzfpmg7] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
}

.sticky-bottom-controls[b-zxgfzfpmg7] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    border-top: 1px solid #e0e0e0;
    padding: 1rem;
}

.accordion-button[b-zxgfzfpmg7] {
    font-weight: 600;
    padding: 0.75rem 1rem;
    background-color: #f9f9f9;
    color: #333;
}

    .accordion-button:not(.collapsed)[b-zxgfzfpmg7] {
        background-color: #eef;
        color: #000;
    }

.map-container-styled[b-zxgfzfpmg7] {
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.map-wrapper[b-zxgfzfpmg7] {
    position: relative;
    height: 100%;
    width: 100%;
}

.map-overlay[b-zxgfzfpmg7] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.empty-state-content[b-zxgfzfpmg7] {
    text-align: center;
    color: #6c757d;
    padding: 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
}
/* _content/OsservatorioPolitico/Components/Pages/Regionali.razor.rz.scp.css */
/* --- DESKTOP (Schermi Grandi > 992px) --- */
@media (min-width: 992px) {
    .regionali-container[b-t7a760mwkh] {
        height: calc(100vh - 120px);
        overflow: hidden;
    }

    #filter-sidebar[b-t7a760mwkh] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fdfdfd;
        border-right: 1px solid #e0e0e0;
    }

    #map-container[b-t7a760mwkh] {
        height: 100%;
        width: 100%;
    }
}

/* --- MOBILE (Schermi Piccoli < 992px) --- */
@media (max-width: 991.98px) {
    .regionali-container[b-t7a760mwkh] {
        position: relative; /* Necessario per il posizionamento assoluto del menu */
        height: auto;
        overflow: visible;
            }
    [b-t7a760mwkh] .info.legend {
        display: none !important;
    }
    /* La sidebar diventa un menu "Offcanvas" (a scomparsa) */
    #filter-sidebar[b-t7a760mwkh] {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%; /* Larghezza menu */
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        z-index: 2000; /* Sopra tutto */
        transform: translateX(-110%); /* Nascosto a sinistra */
        transition: transform 0.3s ease-in-out;
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
    }

        /* Classe che viene aggiunta da Blazor quando apri il menu */
        #filter-sidebar.mobile-open[b-t7a760mwkh] {
            transform: translateX(0); /* Visibile */
        }

    /* Overlay scuro dietro il menu */
    .sidebar-backdrop[b-t7a760mwkh] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 1990;
        display: none; /* Nascosto di default */
    }

        .sidebar-backdrop.show[b-t7a760mwkh] {
            display: block;
        }

    /* La mappa su mobile deve avere un'altezza fissa altrimenti sparisce */
    #map-container[b-t7a760mwkh] {
        height: 60vh;
        min-height: 400px;
        width: 100%;
        border-radius: 8px;
        margin-top: 1rem;
    }
}

/* --- STILI COMUNI (Bottoni, Accordion, ecc.) --- */
.sticky-top-title[b-t7a760mwkh] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-content[b-t7a760mwkh] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
}

.sticky-bottom-controls[b-t7a760mwkh] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    border-top: 1px solid #e0e0e0;
    padding: 1rem;
}

/* Accordion Styles */
.accordion-button[b-t7a760mwkh] {
    font-weight: 600;
    padding: 0.75rem 1rem;
    background-color: #f9f9f9;
    color: #333;
}

    .accordion-button:not(.collapsed)[b-t7a760mwkh] {
        background-color: #eef;
        color: #000;
    }

.map-container-styled[b-t7a760mwkh] {
    background-color: #fff;
    border: 1px solid #dee2e6;
}

/* Overlay Mappa Vuota */
.map-wrapper[b-t7a760mwkh] {
    position: relative;
    height: 100%;
    width: 100%;
}

.map-overlay[b-t7a760mwkh] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.empty-state-content[b-t7a760mwkh] {
    text-align: center;
    color: #6c757d;
    padding: 2rem;
    border: 2px dashed #dee2e6;
    border-radius: 10px;
}
/* _content/OsservatorioPolitico/Components/Pages/Register.razor.rz.scp.css */
/* --- CONTENITORE PRINCIPALE (Sfondo e Scroll) --- */
/* Questo assicura che la pagina abbia lo sfondo grigio e permetta lo scroll */
div[style*="height: 100vh"][b-whbjvkersc] {
    background-color: #f0f2f5 !important;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f0f2f5;
}

/* --- SEZIONE MODULO DI REGISTRAZIONE --- */
.login-wrapper[b-whbjvkersc] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    width: 100%;
}

.login-card[b-whbjvkersc] {
    width: 100%;
    max-width: 450px; /* <--- QUESTO RISOLVE IL PROBLEMA DELLA LARGHEZZA */
    background-color: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    margin: 0 auto; /* Centra orizzontalmente */
}

/* Icona cerchio in alto */
.icon-circle[b-whbjvkersc] {
    width: 60px;
    height: 60px;
    background-color: #e7f1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Stili Input */
.form-control[b-whbjvkersc], .form-select[b-whbjvkersc] {
    border-left: none;
    box-shadow: none !important;
    background-color: #fff;
}

.input-group-text[b-whbjvkersc] {
    background-color: #fff;
    border-right: none;
    color: #64748b;
}

.input-group:focus-within .input-group-text[b-whbjvkersc],
.input-group:focus-within .form-control[b-whbjvkersc],
.input-group:focus-within .form-select[b-whbjvkersc] {
    border-color: #0d6efd;
    color: #0d6efd;
}

.input-group:focus-within i[b-whbjvkersc] {
    color: #0d6efd !important;
}

/* --- SEZIONE TABELLA UTENTI --- */
.card[b-whbjvkersc] {
    border: none;
    border-radius: 16px;
    overflow: hidden; /* Per arrotondare anche gli angoli della tabella */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-header[b-whbjvkersc] {
    background-color: white;
    border-bottom: 1px solid #f1f5f9;
}

.table[b-whbjvkersc] {
    margin-bottom: 0;
}

    .table thead th[b-whbjvkersc] {
        background-color: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
        font-weight: 600;
        color: #64748b;
        font-size: 0.75rem;
        letter-spacing: 0.05em;
        padding: 1rem;
    }

    .table tbody td[b-whbjvkersc] {
        padding: 1rem;
        vertical-align: middle;
        border-bottom: 1px solid #f1f5f9;
        color: #334155;
        font-size: 0.9rem;
    }

    .table tbody tr:last-child td[b-whbjvkersc] {
        border-bottom: none;
    }

/* Badge personalizzati per i ruoli */
.badge[b-whbjvkersc] {
    padding: 0.5em 0.75em;
    font-weight: 500;
    letter-spacing: 0.025em;
}
/* _content/OsservatorioPolitico/Components/Pages/Reportistica.razor.rz.scp.css */
/* --- DESKTOP (> 992px) --- */
@media (min-width: 992px) {
    .regionali-container[b-s852tymbjy] {
        height: calc(100vh - 120px);
        overflow: hidden;
    }

    #filter-sidebar[b-s852tymbjy] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fdfdfd;
        border-right: 1px solid #e0e0e0;
    }

    #report-sidebar[b-s852tymbjy] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fff;
        padding-left: 15px;
    }

    .report-content[b-s852tymbjy] {
        flex-grow: 1;
        overflow-y: auto;
        padding-right: 10px;
        padding-bottom: 100px;
    }
}

/* --- MOBILE (< 992px) --- */
@media (max-width: 991.98px) {
    .regionali-container[b-s852tymbjy] {
        position: relative;
        height: auto;
        overflow: visible;
    }

    /* MENU OFFCANVAS (Stile identico a Regionali) */
    #filter-sidebar[b-s852tymbjy] {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        z-index: 2000;
        transform: translateX(-110%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 4px 0 15px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
    }

        #filter-sidebar.mobile-open[b-s852tymbjy] {
            transform: translateX(0);
        }

    /* Overlay scuro */
    .sidebar-backdrop[b-s852tymbjy] {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0,0,0,0.5);
        z-index: 1990;
        display: none;
    }

        .sidebar-backdrop.show[b-s852tymbjy] {
            display: block;
        }

    /* Spazio per la tabella su mobile */
    #report-sidebar[b-s852tymbjy] {
        min-height: 400px;
        padding: 1rem;
    }

    /* Forza scroll orizzontale per la tabella */
    .table-wrapper[b-s852tymbjy] {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        max-width: 100vw; /* Evita sforamenti */
    }
}

/* --- STILI COMUNI --- */
.sticky-top-title[b-s852tymbjy] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-content[b-s852tymbjy] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
}

.sticky-bottom-controls[b-s852tymbjy] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    border-top: 1px solid #e0e0e0;
    padding: 1rem;
}

/* Tabella */
.table-wrapper[b-s852tymbjy] {
    width: 100%;
    border: 1px solid #dee2e6;
    margin-bottom: 2rem;
}

.sticky-header th[b-s852tymbjy] {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #003366;
    color: #ffffff;
    vertical-align: middle;
}

.sticky-footer td[b-s852tymbjy] {
    position: sticky;
    bottom: 0;
    z-index: 10;
    background-color: #e8f4ff;
    color: #003366;
    font-weight: bold;
    border-top: 2px solid #003366;
}
/* _content/OsservatorioPolitico/Components/Pages/Trend.razor.rz.scp.css */
/* --- LAYOUT STANDARD --- */
@media (min-width: 992px) {
    .gestione-container[b-a2lprdxzjr] {
        height: calc(100vh - 60px);
        overflow: hidden;
    }

    .sidebar-col[b-a2lprdxzjr] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fdfdfd;
        border-right: 1px solid #e0e0e0;
    }

    .content-col[b-a2lprdxzjr] {
        height: 100%;
        overflow-y: auto;
    }
}

@media (max-width: 991.98px) {
    .gestione-container[b-a2lprdxzjr] {
        height: auto;
        overflow: visible;
    }

    .content-col[b-a2lprdxzjr] {
        min-height: 500px;
    }
}

.sticky-top-title[b-a2lprdxzjr] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.filter-content[b-a2lprdxzjr] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

/* Stile Checkbox Partiti */
.list-group-item[b-a2lprdxzjr] {
    transition: background-color 0.2s;
    cursor: pointer;
}

    .list-group-item:hover[b-a2lprdxzjr] {
        background-color: #f8f9fa;
    }

.form-check-input:checked[b-a2lprdxzjr] {
    background-color: #0d6efd;
    border-color: #0d6efd;
}
/* _content/OsservatorioPolitico/Components/Pages/WorkInProgress.razor.rz.scp.css */
/* --- DESKTOP (> 992px) --- */
@media (min-width: 992px) {
    .gestione-container[b-i7i3wjlo0m] {
        height: calc(100vh - 90px);
        overflow: hidden;
    }

    #filter-sidebar[b-i7i3wjlo0m] {
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: #fdfdfd;
        border-right: 1px solid #e0e0e0;
    }

    #data-content[b-i7i3wjlo0m] {
        height: 100%;
        background-color: #fff;
        display: flex;
        flex-direction: column;
    }
}

/* --- MOBILE (< 992px) --- */
@media (max-width: 991.98px) {
    .gestione-container[b-i7i3wjlo0m] {
        height: auto;
        overflow: visible;
    }

    /* Su mobile, la sidebar informativa diventa un box normale in alto */
    #filter-sidebar[b-i7i3wjlo0m] {
        height: auto;
        border-bottom: 1px solid #e0e0e0;
        background-color: #f8f9fa;
        margin-bottom: 1rem;
    }

    .filter-content[b-i7i3wjlo0m] {
        padding: 1rem;
    }

    #data-content[b-i7i3wjlo0m] {
        height: auto;
        min-height: 50vh;
    }
}

/* --- STILI COMUNI --- */
.sticky-top-title[b-i7i3wjlo0m] {
    flex-shrink: 0;
    background-color: #fdfdfd;
    padding: 1rem;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
    font-weight: bold;
}

.filter-content[b-i7i3wjlo0m] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.content-scrollable[b-i7i3wjlo0m]::-webkit-scrollbar {
    width: 6px;
}

.content-scrollable[b-i7i3wjlo0m]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.content-scrollable[b-i7i3wjlo0m]::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

/* Animazione Entrata */
.animate-fade-in[b-i7i3wjlo0m] {
    animation: fadeIn-b-i7i3wjlo0m 0.6s ease-out;
}

@keyframes fadeIn-b-i7i3wjlo0m {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/OsservatorioPolitico/Components/Shared/About.razor.rz.scp.css */
/* Stile generico */
.about-container[b-xfp6z80wyk] {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-wrapper[b-xfp6z80wyk] {
    max-width: 600px;
    width: 100%;
    /* RIPRISTINATO IL TUO COLORE ORIGINALE */
    background-color: rgb(252, 253, 253);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    text-align: center;
}

h1[b-xfp6z80wyk] {
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    letter-spacing: -1px;
}

/* --- SEZIONE PROPRIETARIO (JACK) --- */
.owner-section[b-xfp6z80wyk] {
    margin-bottom: 2rem;
}

.copyright-text[b-xfp6z80wyk] {
    font-size: 1.5rem;
    color: #2c3e50;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

    .copyright-text strong[b-xfp6z80wyk] {
        font-weight: 900;
        color: #0d6efd;
        font-size: 2rem;
    }

.rights[b-xfp6z80wyk] {
    display: block;
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
    margin-top: 5px;
}

/* --- SEZIONE SVILUPPATORE (QUANTUM) --- */
.developer-section-small[b-xfp6z80wyk] {
    opacity: 0.9;
    margin-top: 1rem;
}

.about-logo-small[b-xfp6z80wyk] {
    max-width: 40px; /* RIPORTATO A 40PX */
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

    .about-logo-small:hover[b-xfp6z80wyk] {
        filter: grayscale(0%);
    }

.developer-name[b-xfp6z80wyk] {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MOBILE --- */
@media (max-width: 767.98px) {
    .content-wrapper[b-xfp6z80wyk] {
        padding: 2rem 1.5rem;
    }

    .copyright-text strong[b-xfp6z80wyk] {
        font-size: 1.6rem;
    }

    .about-logo-small[b-xfp6z80wyk] {
        max-width: 35px; /* Ancora più piccolo su mobile */
    }
}
/* _content/OsservatorioPolitico/Components/Shared/Consigli.razor.rz.scp.css */
/* Contenitore principale con lo sfondo a quadretti */
.advice-container[b-x477z64z66] {
    background-color: #fff;
    background-image: linear-gradient(rgba(220, 225, 230, 0.5) 1px, transparent 1px), linear-gradient(to right, rgba(220, 225, 230, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Pannello centrale pulito e minimale */
.advice-card[b-x477z64z66] {
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 3rem;
    max-width: 800px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    /* Titolo principale con font tecnico */
    .advice-card h1[b-x477z64z66] {
        font-family: 'Courier New', monospace;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 1rem;
        border-bottom: 2px solid #0078d4;
        display: inline-block;
        padding-bottom: 0.5rem;
    }

/* Contenitore per le due sezioni di consiglio */
.advice-sections[b-x477z64z66] {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

/* Sezione singola (Chrome / Accelerazione) */
.advice-section[b-x477z64z66] {
    flex: 1;
    display: flex;
    align-items: flex-start;
}

/* Icona pulita e allineata */
.advice-icon[b-x477z64z66] {
    font-size: 2.5rem;
    color: #0078d4;
    margin-right: 1rem;
}

.advice-section h2[b-x477z64z66] {
    color: #34495e;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.advice-section p[b-x477z64z66] {
    color: #5a6872;
    line-height: 1.6;
}

/* --- SEZIONE PER IL MOBILE (DEFINITIVA) --- */
@media (max-width: 767.98px) {
    .advice-container[b-x477z64z66] {
        padding: 1rem; /* Riduci il padding esterno */
    }

    .advice-card[b-x477z64z66] {
        padding: 1.5rem; /* Riduci il padding interno della card */
    }

        .advice-card h1[b-x477z64z66] {
            font-size: 1.4rem; /* Riduci il titolo principale */
        }

        .advice-card > p[b-x477z64z66] {
            font-size: 0.95rem; /* Riduci il sottotitolo */
        }

    .advice-sections[b-x477z64z66] {
        flex-direction: column; /* Impila le sezioni verticalmente */
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .advice-icon[b-x477z64z66] {
        font-size: 2rem;
    }

    .advice-section h2[b-x477z64z66] {
        font-size: 1.1rem;
    }

    .advice-section p[b-x477z64z66] {
        font-size: 0.9rem;
    }
}
/* _content/OsservatorioPolitico/Components/Shared/CookiePolicy.razor.rz.scp.css */
/* Contenitore principale con effetto "foglio a righe" e margini verticali */
.legal-container[b-v963a19l1t] {
    background-color: #fdfdfd;
    background-image: linear-gradient(rgba(220, 225, 230, 0.5) 1px, transparent 1px);
    background-size: 100% 2.5rem; /* Altezza di una riga */
    /* --- LA SOLUZIONE DEFINITIVA --- */
    /* Sposta l'intera griglia di righe verso il basso di 2.3rem. */
    /* In questo modo la linea si disegna quasi alla fine del blocco, sotto il testo. */
    background-position-y: 1.7rem;
    padding: 2rem 1rem;
    min-height: calc(100vh - 56px);
    position: relative;
    overflow: hidden;
}

    /* Linee verticali a sinistra */
    .legal-container[b-v963a19l1t]::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-480px);
        width: 1px;
        background-color: rgba(220, 225, 230, 0.7);
        box-shadow: 0.3rem 0 0 rgba(220, 225, 230, 0.7);
    }

    /* Linee verticali a destra */
    .legal-container[b-v963a19l1t]::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(480px);
        width: 1px;
        background-color: rgba(220, 225, 230, 0.7);
        box-shadow: -0.3rem 0 0 rgba(220, 225, 230, 0.7);
    }


/* Wrapper del contenuto */
.content-wrapper[b-v963a19l1t] {
    max-width: 900px;
    margin: 2rem auto;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* --- REGOLE DI ALLINEAMENTO ALLA GRIGLIA --- */

/* Stile per il titolo principale H1 */
.legal-container h1[b-v963a19l1t] {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.8rem;
    border-bottom: none;
    margin: 2.5rem 0;
    line-height: 2.5rem; /* Occupa lo spazio di una riga */
}

/* Stile H2 */
.legal-container h2[b-v963a19l1t] {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2.5rem 0;
    line-height: 2.5rem;
}

/* Stile per i paragrafi */
.legal-container p[b-v963a19l1t] {
    color: #5a6872;
    padding: 0;
    margin: 0 0 2.5rem 0;
    /* La regola chiave: ogni riga di testo avrà un'altezza di 2.5rem */
    line-height: 2.5rem;
}

/* Stili Liste */
.legal-container ul[b-v963a19l1t] {
    list-style-position: inside;
    color: #5a6872;
    padding: 0;
    margin: 0 0 2.5rem 0; /* Margine inferiore di una riga */
    line-height: 2.5rem; /* Altezza di riga base */
}

    .legal-container ul li[b-v963a19l1t] {
        padding: 0;
        margin: 0 0 0 1.5rem; /* Indentazione */
        line-height: 2.5rem; /* Forza ogni <li> a occupare una riga */
    }

.legal-container strong[b-v963a19l1t] {
    color: #34495e;
}
/* _content/OsservatorioPolitico/Components/Shared/NoteLegali.razor.rz.scp.css */
/* Contenitore principale con effetto "foglio a righe" e margini verticali */
.legal-container[b-kuz2vuahly] {
    background-color: #fdfdfd;
    background-image: linear-gradient(rgba(220, 225, 230, 0.5) 1px, transparent 1px);
    background-size: 100% 2.5rem; /* Altezza di una riga */
    /* --- LA SOLUZIONE DEFINITIVA --- */
    /* Sposta l'intera griglia di righe verso il basso di 2.3rem. */
    /* In questo modo la linea si disegna quasi alla fine del blocco, sotto il testo. */
    background-position-y: 1.7rem;
    padding: 2rem 1rem;
    min-height: calc(100vh - 56px);
    position: relative;
    overflow: hidden;
}

    /* Linee verticali a sinistra */
    .legal-container[b-kuz2vuahly]::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-480px);
        width: 1px;
        background-color: rgba(220, 225, 230, 0.7);
        box-shadow: 0.3rem 0 0 rgba(220, 225, 230, 0.7);
    }

    /* Linee verticali a destra */
    .legal-container[b-kuz2vuahly]::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(480px);
        width: 1px;
        background-color: rgba(220, 225, 230, 0.7);
        box-shadow: -0.3rem 0 0 rgba(220, 225, 230, 0.7);
    }


/* Wrapper del contenuto */
.content-wrapper[b-kuz2vuahly] {
    max-width: 900px;
    margin: 2rem auto;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* --- STILI DEL TESTO SEMPLIFICATI E CORRETTI --- */

/* Stile per il titolo principale H1 */
.legal-container h1[b-kuz2vuahly] {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.8rem;
    border-bottom: none;
    margin: 2.5rem 0;
    line-height: 2.5rem; /* Occupa lo spazio di una riga */
}

/* Stile per i paragrafi */
.legal-container p[b-kuz2vuahly] {
    color: #5a6872;
    padding: 0;
    margin: 0 0 2.5rem 0;
    /* La regola chiave: ogni riga di testo avrà un'altezza di 2.5rem */
    line-height: 2.5rem;
}

.legal-container strong[b-kuz2vuahly] {
    color: #34495e;
}
/* _content/OsservatorioPolitico/Components/Shared/PrivacyPolicy.razor.rz.scp.css */
/* Contenitore principale con effetto "foglio a righe" e margini verticali */
.legal-container[b-z9o4hlize6] {
    background-color: #fdfdfd;
    background-image: linear-gradient(rgba(220, 225, 230, 0.5) 1px, transparent 1px);
    background-size: 100% 2.5rem; /* Altezza di una riga */
    /* --- LA SOLUZIONE DEFINITIVA --- */
    /* Sposta l'intera griglia di righe verso il basso di 2.3rem. */
    /* In questo modo la linea si disegna quasi alla fine del blocco, sotto il testo. */
    background-position-y: 1.7rem;
    padding: 2rem 1rem;
    min-height: calc(100vh - 56px);
    position: relative;
    overflow: hidden;
}

    /* Linee verticali a sinistra */
    .legal-container[b-z9o4hlize6]::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(-480px);
        width: 1px;
        background-color: rgba(220, 225, 230, 0.7);
        box-shadow: 0.3rem 0 0 rgba(220, 225, 230, 0.7);
    }

    /* Linee verticali a destra */
    .legal-container[b-z9o4hlize6]::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(480px);
        width: 1px;
        background-color: rgba(220, 225, 230, 0.7);
        box-shadow: -0.3rem 0 0 rgba(220, 225, 230, 0.7);
    }


/* Wrapper del contenuto */
.content-wrapper[b-z9o4hlize6] {
    max-width: 900px;
    margin: 2rem auto;
    background-color: transparent;
    position: relative;
    z-index: 1;
}

/* --- REGOLE DI ALLINEAMENTO ALLA GRIGLIA --- */

/* Stile per il titolo principale H1 */
.legal-container h1[b-z9o4hlize6] {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.8rem;
    border-bottom: none;
    margin: 2.5rem 0;
    line-height: 2.5rem; /* Occupa lo spazio di una riga */
}

/* --- NUOVA REGOLA H2 --- */
.legal-container h2[b-z9o4hlize6] {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 2.5rem 0;
    line-height: 2.5rem;
}

/* Stile per i paragrafi */
.legal-container p[b-z9o4hlize6] {
    color: #5a6872;
    padding: 0;
    margin: 0 0 2.5rem 0;
    /* La regola chiave: ogni riga di testo avrà un'altezza di 2.5rem */
    line-height: 2.5rem;
}

/* --- NUOVE REGOLE LISTE --- */
.legal-container ul[b-z9o4hlize6] {
    list-style-position: inside;
    color: #5a6872;
    padding: 0;
    margin: 0 0 2.5rem 0; /* Margine inferiore di una riga */
    line-height: 2.5rem; /* Altezza di riga base */
}

    .legal-container ul li[b-z9o4hlize6] {
        padding: 0;
        margin: 0 0 0 1.5rem; /* Indentazione */
        line-height: 2.5rem; /* Forza ogni <li> a occupare una riga */
    }

.legal-container strong[b-z9o4hlize6] {
    color: #34495e;
}
