/* _content/OnlineSafetyHub/Components/Layout/MainLayout.razor.rz.scp.css */
.site-header[b-2trjjqphfh] {
    padding: 0.25rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    position: relative;
}

.site-header__inner[b-2trjjqphfh] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link[b-2trjjqphfh] {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.logo-link:focus[b-2trjjqphfh] {
    outline: 2px solid #5b21b6;
    outline-offset: 4px;
    border-radius: 4px;
}

.site-logo[b-2trjjqphfh] {
    height: 25vh;
    max-height: 350px;
    min-height: 180px;
    width: auto;
    display: block;
    transition: opacity 0.15s ease;
}

.logo-link:hover .site-logo[b-2trjjqphfh] {
    opacity: 0.8;
}

/* Desktop Navigation */
.site-nav.desktop-nav[b-2trjjqphfh] {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link[b-2trjjqphfh] {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.15s ease;
    padding: 0.5rem 1rem;
    position: relative;
}

.nav-link:hover[b-2trjjqphfh] {
    color: #5b21b6;
}

.nav-link.active[b-2trjjqphfh] {
    color: #5b21b6;
}

.nav-link.active[b-2trjjqphfh]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: #5b21b6;
}

/* Hamburger Button - Hidden on Desktop */
.hamburger-button[b-2trjjqphfh] {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-button:focus[b-2trjjqphfh] {
    outline: 2px solid #5b21b6;
    outline-offset: 4px;
    border-radius: 4px;
}

.hamburger-line[b-2trjjqphfh] {
    width: 2rem;
    height: 0.25rem;
    background-color: #374151;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Mobile Navigation - Hidden on Desktop */
.mobile-nav[b-2trjjqphfh] {
    display: none;
}

.site-main[b-2trjjqphfh] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .site-logo[b-2trjjqphfh] {
        height: 20vh;
        max-height: 250px;
        min-height: 140px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .site-header[b-2trjjqphfh] {
        padding: 0.5rem 1rem;
    }

    /* Resize logo for mobile devices */
    .site-logo[b-2trjjqphfh] {
        height: 80px;
        max-height: 80px;
        min-height: 60px;
    }

    /* Hide desktop navigation */
    .site-nav.desktop-nav[b-2trjjqphfh] {
        display: none;
    }

    /* Show hamburger button */
    .hamburger-button[b-2trjjqphfh] {
        display: flex;
    }

    /* Mobile Navigation Menu */
    .mobile-nav[b-2trjjqphfh] {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        z-index: 9;
        overflow-y: auto;
    }

    .mobile-nav.open[b-2trjjqphfh] {
        right: 0;
    }

    .mobile-nav-link[b-2trjjqphfh] {
        display: block;
        color: #374151;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.125rem;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
        transition: color 0.15s ease, padding-left 0.15s ease;
    }

    .mobile-nav-link:hover[b-2trjjqphfh] {
        color: #5b21b6;
        padding-left: 0.5rem;
    }

    .mobile-nav-link.active[b-2trjjqphfh] {
        color: #5b21b6;
        font-weight: 600;
        border-left: 4px solid #5b21b6;
        padding-left: 1rem;
    }

    /* Hamburger Animation when Open */
    .hamburger-button[aria-expanded="true"] .hamburger-line:nth-child(1)[b-2trjjqphfh] {
        transform: rotate(45deg) translate(0.5rem, 0.5rem);
    }

    .hamburger-button[aria-expanded="true"] .hamburger-line:nth-child(2)[b-2trjjqphfh] {
        opacity: 0;
    }

    .hamburger-button[aria-expanded="true"] .hamburger-line:nth-child(3)[b-2trjjqphfh] {
        transform: rotate(-45deg) translate(0.5rem, -0.5rem);
    }

    /* Overlay when menu is open */
    .mobile-nav.open[b-2trjjqphfh]::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .site-logo[b-2trjjqphfh] {
        height: 60px;
        max-height: 60px;
        min-height: 50px;
    }

    .mobile-nav[b-2trjjqphfh] {
        width: 80%;
    }
}
/* _content/OnlineSafetyHub/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-ts6rakpefi] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-ts6rakpefi] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-ts6rakpefi] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ts6rakpefi] {
    font-size: 1.1rem;
}

.bi[b-ts6rakpefi] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-ts6rakpefi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-ts6rakpefi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-ts6rakpefi] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-ts6rakpefi] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ts6rakpefi] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ts6rakpefi] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ts6rakpefi]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-ts6rakpefi]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-ts6rakpefi]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-ts6rakpefi] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-ts6rakpefi] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ts6rakpefi] {
        display: none;
    }

    .nav-scrollable[b-ts6rakpefi] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/OnlineSafetyHub/Components/Pages/Blog.razor.rz.scp.css */
/* Blog.razor.css */

.blog-page[b-0qqhyhjzv5] {
    padding: 2rem 0;
    min-height: 60vh;
}

.container[b-0qqhyhjzv5] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Blog Header */
.blog-header[b-0qqhyhjzv5] {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1[b-0qqhyhjzv5] {
    font-size: 2.5rem;
    color: #111827;
    margin: 0 0 0.5rem;
}

.subtitle[b-0qqhyhjzv5] {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0;
}

/* Blog Grid - 4 columns layout like the image */
.blog-grid[b-0qqhyhjzv5] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Blog Card Link Wrapper */
.blog-card-link[b-0qqhyhjzv5] {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card-link:focus[b-0qqhyhjzv5] {
    outline: 2px solid #5b21b6;
    outline-offset: 4px;
    border-radius: 12px;
}

/* Blog Card */
.blog-card[b-0qqhyhjzv5] {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    max-width: 100%; /* Ensure card never exceeds container */
}

.blog-card-link:hover .blog-card[b-0qqhyhjzv5] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Blog Image */
.blog-image[b-0qqhyhjzv5] {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.blog-image img[b-0qqhyhjzv5] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block; /* Remove inline spacing */
}

.blog-card-link:hover .blog-image img[b-0qqhyhjzv5] {
    transform: scale(1.05);
}

/* Blog Content */
.blog-content[b-0qqhyhjzv5] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h2[b-0qqhyhjzv5] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 0.75rem;
    line-height: 1.4;
    transition: color 0.15s ease;
    word-wrap: break-word; /* Prevent long words from overflowing */
    overflow-wrap: break-word;
}

.blog-card-link:hover .blog-content h2[b-0qqhyhjzv5] {
    color: #5b21b6;
}

.blog-content p[b-0qqhyhjzv5] {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 1rem;
    flex-grow: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Blog Meta */
.blog-meta[b-0qqhyhjzv5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap; /* Allow wrapping on very small screens */
    gap: 0.5rem;
}

.date[b-0qqhyhjzv5] {
    font-size: 0.875rem;
    color: #9ca3af;
}

.read-more[b-0qqhyhjzv5] {
    color: #5b21b6;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.15s ease;
    white-space: nowrap;
}

.blog-card-link:hover .read-more[b-0qqhyhjzv5] {
    color: #7c3aed;
    text-decoration: underline;
}

/* No Articles State */
.no-articles[b-0qqhyhjzv5] {
    text-align: center;
    padding: 4rem 2rem;
    color: #6b7280;
}

.no-articles p[b-0qqhyhjzv5] {
    font-size: 1.125rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-grid[b-0qqhyhjzv5] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container[b-0qqhyhjzv5] {
        padding: 0 1rem; /* Reduce padding on mobile */
    }

    .blog-page[b-0qqhyhjzv5] {
        padding: 1.5rem 0;
    }

    .blog-grid[b-0qqhyhjzv5] {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1rem;
    }
    
    .blog-header h1[b-0qqhyhjzv5] {
        font-size: 2rem;
    }

    .blog-image[b-0qqhyhjzv5] {
        height: 180px; /* Slightly smaller images on mobile */
    }

    .blog-content[b-0qqhyhjzv5] {
        padding: 1rem;
    }

    .blog-content h2[b-0qqhyhjzv5] {
        font-size: 1.125rem;
    }

    .blog-content p[b-0qqhyhjzv5] {
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .container[b-0qqhyhjzv5] {
        padding: 0 0.75rem;
    }

    .blog-header h1[b-0qqhyhjzv5] {
        font-size: 1.75rem;
    }
    
    .subtitle[b-0qqhyhjzv5] {
        font-size: 1rem;
    }

    .blog-image[b-0qqhyhjzv5] {
        height: 160px; /* Even smaller on very small screens */
    }

    .blog-content h2[b-0qqhyhjzv5] {
        font-size: 1rem;
    }

    .blog-meta[b-0qqhyhjzv5] {
        font-size: 0.8125rem;
    }

    .date[b-0qqhyhjzv5] {
        font-size: 0.8125rem;
    }

    .read-more[b-0qqhyhjzv5] {
        font-size: 0.8125rem;
    }
}
/* _content/OnlineSafetyHub/Components/Pages/BlogArticle.razor.rz.scp.css */
/* BlogArticle.razor.css */

.article-page[b-o3c5l941nh] {
    padding: 2rem 0 4rem;
    background: #ffffff;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container[b-o3c5l941nh] {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    overflow-x: hidden;
}

/* Breadcrumb */
.breadcrumb[b-o3c5l941nh] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #6b7280;
    flex-wrap: wrap;
}

.breadcrumb a[b-o3c5l941nh] {
    color: #5b21b6;
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumb a:hover[b-o3c5l941nh] {
    color: #7c3aed;
    text-decoration: underline;
}

.breadcrumb .separator[b-o3c5l941nh] {
    color: #d1d5db;
}

/* Article Not Found */
.article-not-found[b-o3c5l941nh] {
    text-align: center;
    padding: 4rem 2rem;
}

.article-not-found h1[b-o3c5l941nh] {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
}

.article-not-found p[b-o3c5l941nh] {
    color: #6b7280;
    margin-bottom: 2rem;
}

/* Article Header */
.article-header[b-o3c5l941nh] {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.article-header h1[b-o3c5l941nh] {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    color: #111827;
    margin: 0 0 1rem;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-meta[b-o3c5l941nh] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.article-meta .separator[b-o3c5l941nh] {
    color: #d1d5db;
}

.article-meta time[b-o3c5l941nh],
.article-meta .author[b-o3c5l941nh],
.article-meta .read-time[b-o3c5l941nh] {
    color: #6b7280;
}

/* Featured Image */
.article-image[b-o3c5l941nh] {
    width: 100%;
    max-width: 100%; /* Ensure image never exceeds container */
    max-height: 500px;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.article-image img[b-o3c5l941nh] {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-width: 100%;
    object-fit: cover;
    display: block;
}

/* Article Content */
.article-content[b-o3c5l941nh] {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #374151;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content *[b-o3c5l941nh] {
    max-width: 100%; /* Ensure all content elements respect container width */
}

.article-content img[b-o3c5l941nh] {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem 0;
}

.article-content h2[b-o3c5l941nh] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content h3[b-o3c5l941nh] {
    font-size: 1.375rem;
    font-weight: 600;
    color: #111827;
    margin: 2rem 0 0.75rem;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content p[b-o3c5l941nh] {
    margin: 0 0 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content ul[b-o3c5l941nh],
.article-content ol[b-o3c5l941nh] {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
}

.article-content li[b-o3c5l941nh] {
    margin-bottom: 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.article-content strong[b-o3c5l941nh] {
    font-weight: 600;
    color: #111827;
}

.article-content a[b-o3c5l941nh] {
    color: #5b21b6;
    text-decoration: underline;
    text-underline-offset: 2px;
    word-break: break-word;
}

.article-content a:hover[b-o3c5l941nh] {
    color: #7c3aed;
}

.article-content code[b-o3c5l941nh] {
    background: #f3f4f6;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: 'Courier New', monospace;
    word-break: break-all;
}

.article-content blockquote[b-o3c5l941nh] {
    border-left: 4px solid #5b21b6;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6b7280;
}

.article-content .disclaimer[b-o3c5l941nh] {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
    font-size: 0.9375rem;
}

/* Tables */
.article-content table[b-o3c5l941nh] {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.9375rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    display: block; /* Make table scrollable */
    overflow-x: auto; /* Enable horizontal scroll if needed */
}

.article-content table thead[b-o3c5l941nh] {
    background-color: #5b21b6;
    color: #ffffff;
}

.article-content table th[b-o3c5l941nh] {
    padding: 0.875rem;
    text-align: left;
    font-weight: 600;
    border: none;
    white-space: nowrap; /* Prevent header text wrapping */
}

.article-content table tbody tr[b-o3c5l941nh] {
    border-bottom: 1px solid #e5e7eb;
}

.article-content table tbody tr:nth-child(even)[b-o3c5l941nh] {
    background-color: #f9fafb;
}

.article-content table tbody tr:hover[b-o3c5l941nh] {
    background-color: #f3f4f6;
}

.article-content table td[b-o3c5l941nh] {
    padding: 0.875rem;
    border: none;
    vertical-align: top;
}

.article-content table td strong[b-o3c5l941nh] {
    color: #5b21b6;
}

/* Article Footer */
.article-footer[b-o3c5l941nh] {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.btn[b-o3c5l941nh] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.15s ease;
}

.btn.secondary[b-o3c5l941nh] {
    background: #ffffff;
    color: #5b21b6;
    border: 1px solid #5b21b6;
}

.btn.secondary:hover[b-o3c5l941nh] {
    background: #f5f3ff;
    border-color: #7c3aed;
    color: #7c3aed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container[b-o3c5l941nh] {
        padding: 0 1rem;
    }

    .article-page[b-o3c5l941nh] {
        padding: 1.5rem 0 3rem;
    }

    .article-header h1[b-o3c5l941nh] {
        font-size: 1.5rem;
    }
    
    .article-content[b-o3c5l941nh] {
        font-size: 1rem;
    }
    
    .article-content h2[b-o3c5l941nh] {
        font-size: 1.375rem;
        margin: 2rem 0 0.75rem;
    }
    
    .article-content h3[b-o3c5l941nh] {
        font-size: 1.125rem;
        margin: 1.5rem 0 0.5rem;
    }
    
    .article-meta[b-o3c5l941nh] {
        font-size: 0.8125rem;
    }
    
    /* Make tables scrollable on mobile */
    .article-content table[b-o3c5l941nh] {
        font-size: 0.8125rem;
    }
    
    .article-content table th[b-o3c5l941nh],
    .article-content table td[b-o3c5l941nh] {
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    .article-image[b-o3c5l941nh] {
        max-height: 300px;
        border-radius: 8px;
    }

    .article-content ul[b-o3c5l941nh],
    .article-content ol[b-o3c5l941nh] {
        padding-left: 1.25rem;
    }

    .article-content .disclaimer[b-o3c5l941nh] {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .container[b-o3c5l941nh] {
        padding: 0 0.75rem;
    }

    .breadcrumb[b-o3c5l941nh] {
        font-size: 0.8125rem;
    }
    
    .article-image[b-o3c5l941nh] {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        width: calc(100% + 1.5rem);
        max-width: calc(100% + 1.5rem);
        border-radius: 0;
        max-height: 250px;
    }

    .article-header h1[b-o3c5l941nh] {
        font-size: 1.375rem;
    }

    .article-content[b-o3c5l941nh] {
        font-size: 0.9375rem;
    }

    .article-content h2[b-o3c5l941nh] {
        font-size: 1.25rem;
    }

    .article-content h3[b-o3c5l941nh] {
        font-size: 1.0625rem;
    }

    .btn[b-o3c5l941nh] {
        padding: 0.625rem 1.25rem;
        font-size: 0.9375rem;
    }
}
/* _content/OnlineSafetyHub/Components/Pages/Home.razor.rz.scp.css */
/* Home.razor.css - SaaS marketing landing styles (inspired by privado.ai layout patterns) */
:root[b-prxnocdsnp] {
  --primary: #2563EB; /* Blue 600 */
  --primary-dark: #1d4ed8; /* Blue 700 for hover/active */
  --text: #111827;    /* Gray 900 */
  --muted: #374151;   /* Gray 700 */
  --line: #E5E7EB;    /* Gray 200 */
  --bg: #FFFFFF;
}

*[b-prxnocdsnp] { box-sizing: border-box; }

.container[b-prxnocdsnp] { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }
.section[b-prxnocdsnp] { padding: 2.5rem 0; }
.grid.two-col[b-prxnocdsnp] { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; }

/* Hero */
.hero[b-prxnocdsnp] { padding: 0 0 2.5rem; background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); border-bottom: 1px solid var(--line); }
.hero h1[b-prxnocdsnp] { font-size: clamp(2.1rem, 3.8vw, 3.25rem); line-height: 1.12; color: var(--text); margin: 0 0 .75rem; letter-spacing: -0.02em; }
.tagline[b-prxnocdsnp] { font-size: 1.125rem; color: var(--muted); margin: 0 0 1.25rem; }
.hero-ctas[b-prxnocdsnp] { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }
.meta[b-prxnocdsnp] { margin-top: .75rem; font-size: .9rem; color: var(--muted); }

/* Hero visual */
.hero-visual[b-prxnocdsnp] { display:flex; justify-content:center; }
.mock-card[b-prxnocdsnp] { width: 100%; max-width: 440px; border-radius: 16px; border: 1px solid var(--line); background:#fff; box-shadow: 0 10px 40px rgba(0,0,0,.08); padding: 1rem; }
.mock-bar[b-prxnocdsnp] { height: 10px; width: 30%; background: var(--primary); border-radius: 999px; margin-bottom: 1rem; }
.mock-row[b-prxnocdsnp] { height: 12px; background: #e5e7eb; border-radius: 8px; margin-bottom: .5rem; }
.mock-row.short[b-prxnocdsnp] { width: 60%; }

/* Buttons - base */
.btn[b-prxnocdsnp] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, transform .1s ease;
  /* Default (secondary) style - dark text on light bg */
  color: var(--text);
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}
.btn:hover[b-prxnocdsnp] {
  background: #f3f4f6;
  border-color: #d1d5db;
}
.btn:focus[b-prxnocdsnp] {
  outline: none;
}
.btn:focus-visible[b-prxnocdsnp] {
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}
.btn:active[b-prxnocdsnp] {
  transform: translateY(1px);
}
.btn:disabled[b-prxnocdsnp],
.btn[disabled][b-prxnocdsnp] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Secondary button - dark text on light bg with primary border */
.btn.secondary[b-prxnocdsnp] {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.btn.secondary:hover[b-prxnocdsnp] {
  background: #eff6ff;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn.secondary:focus[b-prxnocdsnp],
.btn.secondary:focus-visible[b-prxnocdsnp] {
  background: #fff;
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}
.btn.secondary:active[b-prxnocdsnp] {
  background: #dbeafe;
  color: var(--primary-dark);
}

/* Primary button - white text on blue bg */
.btn.primary[b-prxnocdsnp] {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(37,99,235,.25);
}
.btn.primary:hover[b-prxnocdsnp] {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
}
.btn.primary:focus[b-prxnocdsnp],
.btn.primary:focus-visible[b-prxnocdsnp] {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.3);
}
.btn.primary:active[b-prxnocdsnp] {
  background: var(--primary-dark);
  color: #ffffff;
  transform: translateY(1px);
}

/* Ghost button - dark text, transparent bg, border */
.btn.ghost[b-prxnocdsnp] {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn.ghost:hover[b-prxnocdsnp] {
  background: #f3f4f6;
  border-color: #d1d5db;
  color: var(--text);
}

/* Link style button */
.btn.link[b-prxnocdsnp] {
  background: transparent;
  border: none;
  color: var(--primary);
  padding-left: 0;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn.link:hover[b-prxnocdsnp] {
  color: var(--primary-dark);
  text-decoration: underline;
  background: transparent;
}
.btn.link svg[b-prxnocdsnp] {
  margin-left: .25rem;
  vertical-align: middle;
}

/* Large button */
.btn.lg[b-prxnocdsnp] {
  padding: .9rem 1.4rem;
  font-size: 1.05rem;
}

/* Brands strip */
.brands[b-prxnocdsnp] { background:#fff; border-bottom:1px solid var(--line); }
.brands-inner[b-prxnocdsnp] { display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:.75rem 0; }
.brands-label[b-prxnocdsnp] { font-size:.9rem; }
.brand-chips[b-prxnocdsnp] { display:flex; gap:.5rem; flex-wrap:wrap; }
.brand-chip[b-prxnocdsnp] { padding:.35rem .6rem; border:1px solid var(--line); border-radius:999px; color:var(--muted); background:#fff; font-size:.9rem; }

/* Value bullets */
.value .bullets[b-prxnocdsnp] { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: .75rem; padding: 1.25rem 0; }
.bullet[b-prxnocdsnp] { font-weight: 500; color: var(--text); display:flex; align-items:center; gap:.5rem; }
.dot[b-prxnocdsnp] { width: .5rem; height: .5rem; border-radius: 999px; background: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }

/* Features */
.features[b-prxnocdsnp] { padding: 2rem 0; }
.features h2[b-prxnocdsnp] { text-align:center; margin-bottom:1.25rem; }
.features-grid[b-prxnocdsnp] { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:1rem; }
.feature-card[b-prxnocdsnp] { border: 1px solid var(--line); border-radius: 14px; padding: 1.25rem; background: #fff; box-shadow: 0 4px 16px rgba(17,24,39,.05); }
.feature-icon[b-prxnocdsnp] {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #EEF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
}
.feature-icon svg[b-prxnocdsnp] {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

/* How it works */
.how[b-prxnocdsnp] { padding: 2rem 0; }
.how h2[b-prxnocdsnp] { text-align:center; margin-bottom:1.25rem; }
.steps[b-prxnocdsnp] { list-style:none; padding:0; margin:0; display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:1rem; }
.step[b-prxnocdsnp] { display:flex; gap:.75rem; align-items:flex-start; border:1px solid var(--line); border-radius:12px; padding:1rem; background:#fff; }
.step-num[b-prxnocdsnp] { width:28px; height:28px; border-radius:999px; background:#EEF2FF; color:#1d4ed8; display:inline-flex; align-items:center; justify-content:center; font-weight:700; }

/* Intro */
.intro[b-prxnocdsnp] { padding: 2rem 0 1rem; }
/* Cards */
.card[b-prxnocdsnp] { border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,.03); }
.card.highlight[b-prxnocdsnp] { border-color: rgba(37,99,235,.35); box-shadow: 0 6px 24px rgba(37,99,235,.18); }

/* Check cards */
.check[b-prxnocdsnp] { padding: 2rem 0; }
.check-cards[b-prxnocdsnp] { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; margin-top: 1rem; align-items: stretch;}

/* OR divider */
.or-divider[b-prxnocdsnp] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: 3rem;
}
.or-divider span[b-prxnocdsnp] {
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .25rem .5rem;
}

/* Stepper / Breadcrumb - Arrow style */
.stepper[b-prxnocdsnp] {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-wrap: wrap;
  gap: 0;
}
.stepper li[b-prxnocdsnp] {
  position: relative;
  padding: .6rem 1.25rem .6rem 2rem;
  background: #f3f4f6;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  border: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%, 14px 50%);
  margin-left: -8px;
}
/* First item - flat left edge */
.stepper li:first-child[b-prxnocdsnp] {
  padding-left: 1rem;
  margin-left: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
  border-radius: 6px 0 0 6px;
}
/* Last item - flat right edge */
.stepper li:last-child[b-prxnocdsnp] {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 14px 50%);
  border-radius: 0 6px 6px 0;
  padding-right: 1rem;
}
/* Active state - dark purple background, white text */
.stepper li.active[b-prxnocdsnp] {
  background: #5b21b6 !important;
  color: #ffffff !important;
  font-weight: 600;
}
/* Completed steps - dark purple background, white text */
.stepper li.completed[b-prxnocdsnp] {
  background: #5b21b6 !important;
  color: #ffffff !important;
  font-weight: 500;
}

/* Wizard actions footer */
.wizard-actions[b-prxnocdsnp] {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--line);
}
.wizard-actions .btn[b-prxnocdsnp] {
  min-width: 100px;
}

/* Assessment */
.assessment .status[b-prxnocdsnp] {
  margin: .5rem 0 1.5rem;
  color: var(--muted);
}
.status-value[b-prxnocdsnp] { color: var(--text); }
.status-value.in-scope[b-prxnocdsnp] { color: #dc2626; } /* Red for "Likely in scope" */
.status-value.out-scope[b-prxnocdsnp] { color: #d97706; } /* Amber for "Possibly out of scope" */

/* Site Footer */
.site-footer[b-prxnocdsnp] {
    background: #f9fafb;
    border-top: 1px solid #E5E7EB;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-content[b-prxnocdsnp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-brand[b-prxnocdsnp] {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.footer-links[b-prxnocdsnp] {
    display: flex;
    gap: 1.5rem;
}

.footer-links a[b-prxnocdsnp] {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s ease;
}

.footer-links a:hover[b-prxnocdsnp] {
    color: #2563EB;
    text-decoration: underline;
}

@media (max-width: 640px) {
    .footer-content[b-prxnocdsnp] {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 900px) {
  .grid.two-col[b-prxnocdsnp] { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .check-cards[b-prxnocdsnp] {
    grid-template-columns: 1fr;
  }
  .or-divider[b-prxnocdsnp] {
    padding: .5rem 0;
    min-width: auto;
  }
}
@media (max-width: 640px) {
  .hero-ctas[b-prxnocdsnp] { flex-direction: column; align-items: stretch; }
  .stepper[b-prxnocdsnp] {
    flex-wrap: wrap;
    gap: .25rem;
  }
  .stepper li[b-prxnocdsnp] {
    font-size: .7rem;
    padding: .4rem 1rem .4rem 1.5rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
    margin-left: -6px;
  }
  .stepper li:first-child[b-prxnocdsnp] {
    padding-left: .75rem;
    margin-left: 0;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  }
  .stepper li:last-child[b-prxnocdsnp] {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
    padding-right: .75rem;
  }
}
/* _content/OnlineSafetyHub/Components/Pages/LaunchingSoon.razor.rz.scp.css */
/* LaunchingSoon.razor.css - Launching soon page styles */

.launching-soon[b-l765ny42l9] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.launch-card[b-l765ny42l9] {
    max-width: 500px;
    width: 100%;
    text-align: center;
    padding: 2.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.launch-icon[b-l765ny42l9] {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #EEF2FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.launch-icon svg[b-l765ny42l9] {
    width: 40px;
    height: 40px;
    color: #2563EB;
}

.launch-card h1[b-l765ny42l9] {
    font-size: 2rem;
    color: #111827;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.launch-card .tagline[b-l765ny42l9] {
    font-size: 1.1rem;
    color: #374151;
    margin: 0 0 2rem;
}

.signup-form[b-l765ny42l9] {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.signup-form h2[b-l765ny42l9] {
    font-size: 1.25rem;
    color: #111827;
    margin: 0 0 0.5rem;
}

.signup-form > p[b-l765ny42l9] {
    font-size: 0.95rem;
    color: #374151;
    margin: 0 0 1.25rem;
}

.form-group[b-l765ny42l9] {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group.inline[b-l765ny42l9] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.form-group.inline label[b-l765ny42l9] {
    flex-shrink: 0;
    margin-bottom: 0;
}

.form-group.inline .form-input[b-l765ny42l9] {
    flex: 1;
    min-width: 180px;
}

.form-group.inline .btn[b-l765ny42l9] {
    flex-shrink: 0;
}

.form-group label[b-l765ny42l9] {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.35rem;
}

.form-input[b-l765ny42l9] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus[b-l765ny42l9] {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-input[b-l765ny42l9]::placeholder {
    color: #9ca3af;
}

.signup-form .btn[b-l765ny42l9] {
    margin-top: 0.5rem;
}

.form-group.inline .btn[b-l765ny42l9] {
    margin-top: 0;
}

.form-footer[b-l765ny42l9] {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.75rem;
    text-align: center;
}

.validation-message[b-l765ny42l9] {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.success-message[b-l765ny42l9] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    color: #065f46;
    font-weight: 500;
}

.success-message svg[b-l765ny42l9] {
    color: #10b981;
    flex-shrink: 0;
}

.error-message[b-l765ny42l9] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-weight: 500;
}

.back-link a[b-l765ny42l9] {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.back-link a:hover[b-l765ny42l9] {
    text-decoration: underline;
}

.footer-links[b-l765ny42l9] {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.footer-links a[b-l765ny42l9] {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover[b-l765ny42l9] {
    color: #2563EB;
    text-decoration: underline;
}

/* Button styles (inheriting from app but ensuring they work here) */
.btn.primary[b-l765ny42l9] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: #2563EB;
    color: #ffffff;
    border: 1px solid #2563EB;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.btn.primary:hover[b-l765ny42l9] {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn.primary:disabled[b-l765ny42l9] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn.primary.lg[b-l765ny42l9] {
    padding: 0.9rem 1.75rem;
    font-size: 1.05rem;
}
/* _content/OnlineSafetyHub/Components/Pages/Privacy.razor.rz.scp.css */
/* Privacy.razor.css - Privacy policy page styles */

.privacy-page[b-x14iqwj7oq] {
    padding: 3rem 0;
    background: #fff;
    min-height: 100vh;
}

.privacy-page .container[b-x14iqwj7oq] {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.privacy-page h1[b-x14iqwj7oq] {
    font-size: 2.25rem;
    color: #111827;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.last-updated[b-x14iqwj7oq] {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #E5E7EB;
}

.privacy-content[b-x14iqwj7oq] {
    line-height: 1.7;
    color: #374151;
}

.privacy-content section[b-x14iqwj7oq] {
    margin-bottom: 2rem;
}

.privacy-content h2[b-x14iqwj7oq] {
    font-size: 1.5rem;
    color: #111827;
    margin: 0 0 1rem;
    padding-top: 1rem;
}

.privacy-content h3[b-x14iqwj7oq] {
    font-size: 1.1rem;
    color: #111827;
    margin: 1.25rem 0 0.5rem;
}

.privacy-content p[b-x14iqwj7oq] {
    margin: 0 0 1rem;
}

.privacy-content ul[b-x14iqwj7oq] {
    margin: 0 0 1rem;
    padding-left: 1.5rem;
}

.privacy-content li[b-x14iqwj7oq] {
    margin-bottom: 0.5rem;
}

.privacy-content a[b-x14iqwj7oq] {
    color: #2563EB;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.privacy-content a:hover[b-x14iqwj7oq] {
    color: #1d4ed8;
}

.back-link[b-x14iqwj7oq] {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.back-link a[b-x14iqwj7oq] {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
}

.back-link a:hover[b-x14iqwj7oq] {
    text-decoration: underline;
}
/* _content/OnlineSafetyHub/Components/Pages/Unsubscribe.razor.rz.scp.css */
/* Unsubscribe.razor.css - Unsubscribe page styles */

.unsubscribe-page[b-fsdm2w3we3] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.unsubscribe-card[b-fsdm2w3we3] {
    max-width: 480px;
    width: 100%;
    text-align: center;
    padding: 2.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.unsubscribe-card h1[b-fsdm2w3we3] {
    font-size: 1.75rem;
    color: #111827;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.unsubscribe-card .tagline[b-fsdm2w3we3] {
    font-size: 1rem;
    color: #374151;
    margin: 0 0 1.5rem;
}

.form-group[b-fsdm2w3we3] {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group label[b-fsdm2w3we3] {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.35rem;
}

.form-input[b-fsdm2w3we3] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus[b-fsdm2w3we3] {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-input[b-fsdm2w3we3]::placeholder {
    color: #9ca3af;
}

.btn[b-fsdm2w3we3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.15s ease;
    border: none;
}

.btn.primary[b-fsdm2w3we3] {
    background: #2563EB;
    color: #ffffff;
}

.btn.primary:hover[b-fsdm2w3we3] {
    background: #1d4ed8;
}

.btn.primary:disabled[b-fsdm2w3we3] {
    opacity: 0.6;
    cursor: not-allowed;
}

.validation-message[b-fsdm2w3we3] {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.35rem;
}

.success-message[b-fsdm2w3we3] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    padding: 1.25rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 12px;
    color: #065f46;
    margin-bottom: 1.5rem;
}

.success-message svg[b-fsdm2w3we3] {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.success-message strong[b-fsdm2w3we3] {
    display: block;
    margin-bottom: 0.25rem;
}

.success-message p[b-fsdm2w3we3] {
    margin: 0;
    font-size: 0.9rem;
    color: #047857;
}

.error-message[b-fsdm2w3we3] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    color: #991b1b;
    font-weight: 500;
}

.form-footer[b-fsdm2w3we3] {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1.5rem;
}

.form-footer a[b-fsdm2w3we3] {
    color: #2563EB;
    text-decoration: none;
}

.form-footer a:hover[b-fsdm2w3we3] {
    text-decoration: underline;
}

.back-link[b-fsdm2w3we3] {
    margin-top: 1.5rem;
}

.back-link a[b-fsdm2w3we3] {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.back-link a:hover[b-fsdm2w3we3] {
    text-decoration: underline;
}

.footer-links[b-fsdm2w3we3] {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.footer-links a[b-fsdm2w3we3] {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.85rem;
}

.footer-links a:hover[b-fsdm2w3we3] {
    color: #2563EB;
    text-decoration: underline;
}
