/* /Features/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-w809pl70en],
.components-reconnect-repeated-attempt-visible[b-w809pl70en],
.components-reconnect-failed-visible[b-w809pl70en],
.components-pause-visible[b-w809pl70en],
.components-resume-failed-visible[b-w809pl70en],
.components-rejoining-animation[b-w809pl70en] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-w809pl70en],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-w809pl70en],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-w809pl70en],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-w809pl70en],
#components-reconnect-modal.components-reconnect-retrying[b-w809pl70en],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-w809pl70en],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-w809pl70en],
#components-reconnect-modal.components-reconnect-failed[b-w809pl70en],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-w809pl70en] {
    display: block;
}


#components-reconnect-modal[b-w809pl70en] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-w809pl70en 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-w809pl70en 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-w809pl70en 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-w809pl70en]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-w809pl70en 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-w809pl70en {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-w809pl70en {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-w809pl70en {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-w809pl70en] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-w809pl70en] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-w809pl70en] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-w809pl70en] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-w809pl70en] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-w809pl70en] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-w809pl70en] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-w809pl70en 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-w809pl70en] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-w809pl70en {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Features/Public/Components/HomeBrandsSection.razor.rz.scp.css */
/* === BRANDS SECTION === */
.brands-section[b-76n1q5wlvp] {
    padding: 4rem 2rem;
    background: white;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.brands-title[b-76n1q5wlvp] {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 2rem 0;
}

.brands-grid[b-76n1q5wlvp] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.brand-item[b-76n1q5wlvp] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #aaa;
    transition: color 0.3s ease;
}

.brand-item:hover[b-76n1q5wlvp] {
    color: #B31D0F;
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
    .brands-grid[b-76n1q5wlvp] {
        gap: 1rem 2rem;
    }

    .brand-item[b-76n1q5wlvp] {
        font-size: 1rem;
    }
}
/* /Features/Public/Components/HomeCtaSection.razor.rz.scp.css */
/* === CTA SECTION === */
.cta-section[b-o4y1i5ca1p] {
    background: linear-gradient(135deg, #B31D0F 0%, #851503 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section[b-o4y1i5ca1p]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content[b-o4y1i5ca1p] {
    position: relative;
    z-index: 1;
}

.cta-title[b-o4y1i5ca1p] {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.cta-subtitle[b-o4y1i5ca1p] {
    opacity: 0.9;
    margin: 0 0 2rem 0;
    font-size: 1.1rem;
}

.cta-buttons[b-o4y1i5ca1p] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-phone[b-o4y1i5ca1p] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #B31D0F;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-phone:hover[b-o4y1i5ca1p] {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-phone svg[b-o4y1i5ca1p] {
    width: 24px;
    height: 24px;
}

.cta-whatsapp[b-o4y1i5ca1p] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-whatsapp:hover[b-o4y1i5ca1p] {
    transform: scale(1.05);
    background: #20BA5C;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-whatsapp svg[b-o4y1i5ca1p] {
    width: 24px;
    height: 24px;
}

/* === SOCIAL LINKS === */
.social-links[b-o4y1i5ca1p] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link[b-o4y1i5ca1p] {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover[b-o4y1i5ca1p] {
    background: white;
    transform: translateY(-3px);
}

.social-link svg[b-o4y1i5ca1p] {
    width: 24px;
    height: 24px;
    fill: white;
    transition: fill 0.3s ease;
}

.social-link:hover svg[b-o4y1i5ca1p] {
    fill: #B31D0F;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .cta-section[b-o4y1i5ca1p] {
        padding: 4rem 1.5rem;
    }

    .cta-title[b-o4y1i5ca1p] {
        font-size: 1.5rem;
    }

    .cta-phone[b-o4y1i5ca1p] {
        font-size: 1.1rem;
        padding: 0.85rem 1.5rem;
    }
}
/* /Features/Public/Components/HomeHeroSection.razor.rz.scp.css */
/* === HERO SECTION === */
.hero-section[b-y38sbf4ve3] {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #B31D0F 100%);
    color: white;
    padding: 4rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section[b-y38sbf4ve3]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content[b-y38sbf4ve3] {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.hero-badge[b-y38sbf4ve3] {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 1.5rem;
}

.hero-title[b-y38sbf4ve3] {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.hero-subtitle[b-y38sbf4ve3] {
    font-size: 1.5rem;
    opacity: 0.9;
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.hero-stats[b-y38sbf4ve3] {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stat[b-y38sbf4ve3] {
    text-align: center;
}

.hero-stat-number[b-y38sbf4ve3] {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.hero-stat-label[b-y38sbf4ve3] {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
    display: block;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-section[b-y38sbf4ve3] {
        padding: 3rem 1.5rem 4rem;
        min-height: 350px;
    }

    .hero-title[b-y38sbf4ve3] {
        font-size: 2.2rem;
    }

    .hero-subtitle[b-y38sbf4ve3] {
        font-size: 1.1rem;
    }

    .hero-stats[b-y38sbf4ve3] {
        gap: 1.5rem;
    }

    .hero-stat-number[b-y38sbf4ve3] {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title[b-y38sbf4ve3] {
        font-size: 1.8rem;
    }
}
/* /Features/Public/Components/HomeInfoSection.razor.rz.scp.css */
/* === INFO SECTION === */
.info-section[b-3fxz748f8t] {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.info-grid[b-3fxz748f8t] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card[b-3fxz748f8t] {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.info-card-title[b-3fxz748f8t] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #B31D0F;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card-title svg[b-3fxz748f8t] {
    width: 28px;
    height: 28px;
}

/* === ORARI === */
.orari-table[b-3fxz748f8t] {
    width: 100%;
    border-collapse: collapse;
}

.orari-table tr[b-3fxz748f8t] {
    border-bottom: 1px solid #f0f0f0;
}

.orari-table tr:last-child[b-3fxz748f8t] {
    border-bottom: none;
}

.orari-table td[b-3fxz748f8t] {
    padding: 0.85rem 0;
}

.orari-table .giorno[b-3fxz748f8t] {
    font-weight: 500;
    color: #272c34;
}

.orari-table .orario[b-3fxz748f8t] {
    text-align: right;
    color: #666;
}

.orario-chiuso[b-3fxz748f8t] {
    color: #B31D0F;
    font-style: italic;
}

/* === CONTATTI === */
.contatto-item[b-3fxz748f8t] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contatto-item:last-child[b-3fxz748f8t] {
    margin-bottom: 0;
}

.contatto-icon[b-3fxz748f8t] {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contatto-item:hover .contatto-icon[b-3fxz748f8t] {
    background: linear-gradient(135deg, #B31D0F 0%, #851503 100%);
}

.contatto-item:hover .contatto-icon svg[b-3fxz748f8t] {
    fill: white;
}

.contatto-icon svg[b-3fxz748f8t] {
    width: 24px;
    height: 24px;
    fill: #B31D0F;
    transition: fill 0.3s ease;
}

.contatto-label[b-3fxz748f8t] {
    font-size: 0.8rem;
    color: #999;
    margin: 0 0 0.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contatto-value[b-3fxz748f8t] {
    font-size: 1.1rem;
    color: #272c34;
    font-weight: 500;
    margin: 0;
}

.contatto-value a[b-3fxz748f8t] {
    color: #B31D0F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contatto-value a:hover[b-3fxz748f8t] {
    color: #851503;
    text-decoration: underline;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .info-section[b-3fxz748f8t] {
        padding: 3rem 1.5rem;
    }

    .info-grid[b-3fxz748f8t] {
        grid-template-columns: 1fr;
    }
}
/* /Features/Public/Components/HomeMapSection.razor.rz.scp.css */
/* === MAP SECTION === */
.map-section[b-5s96knk11h] {
    background: #272c34;
    padding: 4rem 2rem;
}

.map-container[b-5s96knk11h] {
    max-width: 1200px;
    margin: 0 auto;
}

.map-header[b-5s96knk11h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-title[b-5s96knk11h] {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.map-directions-btn[b-5s96knk11h] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #B31D0F;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-directions-btn:hover[b-5s96knk11h] {
    background: #851503;
    transform: translateY(-2px);
}

.map-directions-btn svg[b-5s96knk11h] {
    width: 20px;
    height: 20px;
}

.map-frame[b-5s96knk11h] {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .map-header[b-5s96knk11h] {
        flex-direction: column;
        text-align: center;
    }
}
/* /Features/Public/Components/HomeReviewsSection.razor.rz.scp.css */
/* === REVIEWS SECTION === */
.reviews-section[b-8nm1b036nw] {
    padding: 5rem 2rem;
    background: white;
}

.section-title[b-8nm1b036nw] {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #272c34;
    margin: 0 0 0.5rem 0;
}

.section-subtitle[b-8nm1b036nw] {
    text-align: center;
    color: #666;
    margin: 0 0 3rem 0;
    font-size: 1.1rem;
}

.reviews-grid[b-8nm1b036nw] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card[b-8nm1b036nw] {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.review-card[b-8nm1b036nw]::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: #B31D0F;
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-stars[b-8nm1b036nw] {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-star[b-8nm1b036nw] {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-text[b-8nm1b036nw] {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
}

.review-author[b-8nm1b036nw] {
    font-weight: 600;
    color: #272c34;
    margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .reviews-section[b-8nm1b036nw] {
        padding: 3rem 1.5rem;
    }

    .section-title[b-8nm1b036nw] {
        font-size: 1.6rem;
    }

    .reviews-grid[b-8nm1b036nw] {
        grid-template-columns: 1fr;
    }
}
/* /Features/Public/Components/HomeServiceCard.razor.rz.scp.css */
/* === SERVICE CARD === */
.service-card[b-6emffcia3s] {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card[b-6emffcia3s]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B31D0F 0%, #851503 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover[b-6emffcia3s] {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-card:hover[b-6emffcia3s]::before {
    transform: scaleX(1);
}

.service-icon[b-6emffcia3s] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #B31D0F 0%, #851503 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(179, 29, 15, 0.3);
}

.service-title[b-6emffcia3s] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #272c34;
    margin: 0 0 0.75rem 0;
}

.service-desc[b-6emffcia3s] {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}
/* /Features/Public/Components/HomeServicesSection.razor.rz.scp.css */
/* === SERVICES SECTION === */
.services-section[b-2vapsn9fqq] {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.section-title[b-2vapsn9fqq] {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    color: #272c34;
    margin: 0 0 0.5rem 0;
}

.section-subtitle[b-2vapsn9fqq] {
    text-align: center;
    color: #666;
    margin: 0 0 3rem 0;
    font-size: 1.1rem;
}

.services-grid[b-2vapsn9fqq] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .services-section[b-2vapsn9fqq] {
        padding: 3rem 1.5rem;
    }

    .section-title[b-2vapsn9fqq] {
        font-size: 1.6rem;
    }

    .services-grid[b-2vapsn9fqq] {
        grid-template-columns: 1fr;
    }
}
/* /Features/Public/Components/WhatsAppFloatingButton.razor.rz.scp.css */
/* === WHATSAPP FLOATING BUTTON === */
.whatsapp-float[b-xb95oo0xgd] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover[b-xb95oo0xgd] {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg[b-xb95oo0xgd] {
    width: 32px;
    height: 32px;
    fill: white;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .whatsapp-float[b-xb95oo0xgd] {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
}
/* /Features/Public/Home.razor.rz.scp.css */
/* ============================================
   HOME PAGE - CSS ISOLATION
   ShoppinGomme - Gommista di Fiducia
   
   Questo file contiene solo gli override per il layout MudBlazor.
   Gli stili specifici dei componenti sono nei rispettivi file .razor.css
   ============================================ */

/* === PAGE WRAPPER - Override layout padding === */
[b-zzlja7s7uo] .mud-main-content {
    padding: 0 !important;
}

[b-zzlja7s7uo] .mud-main-content > .mud-container {
    padding: 0 !important;
    max-width: 100% !important;
    height: auto !important;
}
