/* /Components/Blog.razor.rz.scp.css */
/* Blog Section */
.blog-section[b-6id55ww7by] {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    background: var(--bg-primary);
}

.blog-container[b-6id55ww7by] {
    max-width: 1100px;
    margin: 0 auto;
}

/* Blog Header */
.blog-header[b-6id55ww7by] {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.blog-title[b-6id55ww7by] {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.blog-subtitle[b-6id55ww7by] {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Loading Spinner */
.loading-spinner[b-6id55ww7by] {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-secondary);
}

.spinner[b-6id55ww7by] {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 123, 255, 0.1);
    border-top-color: var(--color-primary, #2563eb);
    border-radius: 50%;
    animation: spin-b-6id55ww7by 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin-b-6id55ww7by {
    to { transform: rotate(360deg); }
}

/* Section Title */
.section-title[b-6id55ww7by] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* Featured Posts */
.featured-posts[b-6id55ww7by] {
    margin-bottom: 4rem;
}

.featured-grid[b-6id55ww7by] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.featured-card[b-6id55ww7by] {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.featured-card:hover[b-6id55ww7by] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card-image[b-6id55ww7by] {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.featured-badge[b-6id55ww7by] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

.featured-content[b-6id55ww7by] {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Post Meta */
.post-meta[b-6id55ww7by] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.85rem;
}

.post-category[b-6id55ww7by] {
    color: white;
    background: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
}

.post-date[b-6id55ww7by] {
    color: var(--text-secondary);
}

/* Post Title & Content */
.post-title[b-6id55ww7by] {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-excerpt[b-6id55ww7by] {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.95rem;
}

/* Post Footer */
.post-footer[b-6id55ww7by] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    gap: 0.75rem;
}

.post-tags[b-6id55ww7by] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.tag[b-6id55ww7by] {
    background: var(--tag-background);
    color: var(--text-secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.reading-time[b-6id55ww7by] {
    color: var(--text-secondary);
    font-size: 0.8rem;
    white-space: nowrap;
}

/* All Posts Section */
.all-posts[b-6id55ww7by] {
    margin-bottom: 4rem;
}

.posts-header[b-6id55ww7by] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filters[b-6id55ww7by] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.category-filter[b-6id55ww7by] {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 6px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.category-filter:hover[b-6id55ww7by] {
    border-color: var(--color-primary, #2563eb);
}

.category-filter:focus[b-6id55ww7by] {
    outline: none;
    border-color: var(--color-primary, #2563eb);
}

/* Posts Grid */
.posts-grid[b-6id55ww7by] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.post-card[b-6id55ww7by] {
    background: var(--bg-secondary);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.post-card:hover[b-6id55ww7by] {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.post-content[b-6id55ww7by] {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Tags Cloud */
.tags-cloud[b-6id55ww7by] {
    padding: 2rem 0;
}

.tags[b-6id55ww7by] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.tag-pill[b-6id55ww7by] {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary, #2563eb);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.tag-pill:hover[b-6id55ww7by] {
    background: var(--color-primary, #2563eb);
    color: white;
    border-color: var(--color-primary, #2563eb);
}

/* No Posts Message */
.no-posts[b-6id55ww7by] {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-title[b-6id55ww7by] {
        font-size: 2rem;
    }
    
    .blog-subtitle[b-6id55ww7by] {
        font-size: 1rem;
    }
    
    .featured-grid[b-6id55ww7by],
    .posts-grid[b-6id55ww7by] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title[b-6id55ww7by] {
        font-size: 1.5rem;
    }
    
    .posts-header[b-6id55ww7by] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-filter[b-6id55ww7by] {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-section[b-6id55ww7by] {
        padding: 100px 1rem 2rem;
    }
    
    .blog-title[b-6id55ww7by] {
        font-size: 1.75rem;
    }
    
    .featured-content[b-6id55ww7by],
    .post-content[b-6id55ww7by] {
        padding: 1.25rem;
    }
    
    .post-title[b-6id55ww7by] {
        font-size: 1.1rem;
    }
}
/* /Components/BlogPost.razor.rz.scp.css */
/* Blog Post Section */
.blog-post-section[b-4kxi50ixp5] {
    min-height: 100vh;
    padding-top: 80px;
    background: var(--background-color);
}

/* Post Header */
.post-header[b-4kxi50ixp5] {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    text-align: center;
}

.back-button[b-4kxi50ixp5] {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.back-button:hover[b-4kxi50ixp5] {
    opacity: 0.9;
    transform: translateX(-4px);
}

.post-category-badge[b-4kxi50ixp5] {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.post-header .post-title[b-4kxi50ixp5] {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.post-meta[b-4kxi50ixp5] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    flex-wrap: wrap;
}

/* Content Wrapper */
.post-content-wrapper[b-4kxi50ixp5] {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 3rem;
}

/* Post Content */
.blog-post .post-content[b-4kxi50ixp5] {
    background: var(--card-background);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    line-height: 1.8;
    color: var(--text-color);
}

.blog-post .post-content h1[b-4kxi50ixp5],
.blog-post .post-content h2[b-4kxi50ixp5],
.blog-post .post-content h3[b-4kxi50ixp5],
.blog-post .post-content h4[b-4kxi50ixp5] {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-post .post-content h1[b-4kxi50ixp5] {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.blog-post .post-content h2[b-4kxi50ixp5] {
    font-size: 2rem;
}

.blog-post .post-content h3[b-4kxi50ixp5] {
    font-size: 1.5rem;
}

.blog-post .post-content p[b-4kxi50ixp5] {
    margin-bottom: 1.5rem;
}

.blog-post .post-content ul[b-4kxi50ixp5],
.blog-post .post-content ol[b-4kxi50ixp5] {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post .post-content li[b-4kxi50ixp5] {
    margin-bottom: 0.5rem;
}

.blog-post .post-content pre[b-4kxi50ixp5] {
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.blog-post .post-content code[b-4kxi50ixp5] {
    background: var(--tag-background);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.blog-post .post-content pre code[b-4kxi50ixp5] {
    background: none;
    padding: 0;
}

.blog-post .post-content blockquote[b-4kxi50ixp5] {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-style: italic;
}

.blog-post .post-content a[b-4kxi50ixp5] {
    color: var(--primary-color);
    text-decoration: underline;
}

.blog-post .post-content a:hover[b-4kxi50ixp5] {
    opacity: 0.8;
}

/* Sidebar */
.post-sidebar[b-4kxi50ixp5] {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section[b-4kxi50ixp5] {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.sidebar-section h3[b-4kxi50ixp5] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.sidebar-section .post-tags[b-4kxi50ixp5] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-buttons[b-4kxi50ixp5] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.share-btn[b-4kxi50ixp5] {
    display: block;
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.share-btn.twitter[b-4kxi50ixp5] {
    background: #1DA1F2;
}

.share-btn.linkedin[b-4kxi50ixp5] {
    background: #0077B5;
}

.share-btn.facebook[b-4kxi50ixp5] {
    background: #1877F2;
}

.share-btn:hover[b-4kxi50ixp5] {
    transform: translateY(-2px);
    opacity: 0.9;
}

.updated-date[b-4kxi50ixp5] {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Related Posts */
.related-posts[b-4kxi50ixp5] {
    max-width: 1200px;
    margin: 4rem auto 2rem;
    padding: 0 2rem;
}

.related-posts h2[b-4kxi50ixp5] {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.related-grid[b-4kxi50ixp5] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-card[b-4kxi50ixp5] {
    background: var(--card-background);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.related-card:hover[b-4kxi50ixp5] {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.related-image[b-4kxi50ixp5] {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.related-content[b-4kxi50ixp5] {
    padding: 1.5rem;
}

.related-content h4[b-4kxi50ixp5] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.related-content p[b-4kxi50ixp5] {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.read-more[b-4kxi50ixp5] {
    color: var(--primary-color);
    font-weight: 600;
}

/* Not Found */
.not-found[b-4kxi50ixp5] {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.not-found h1[b-4kxi50ixp5] {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.not-found p[b-4kxi50ixp5] {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .post-content-wrapper[b-4kxi50ixp5] {
        grid-template-columns: 1fr;
    }

    .post-sidebar[b-4kxi50ixp5] {
        position: static;
    }
}

@media (max-width: 768px) {
    .post-header[b-4kxi50ixp5] {
        height: 400px;
    }

    .post-header .post-title[b-4kxi50ixp5] {
        font-size: 2rem;
    }

    .post-meta-header[b-4kxi50ixp5] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .blog-post .post-content[b-4kxi50ixp5] {
        padding: 1.5rem;
    }

    .related-grid[b-4kxi50ixp5] {
        grid-template-columns: 1fr;
    }

    .back-button[b-4kxi50ixp5] {
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
/* /Components/ThemeToggle.razor.rz.scp.css */
/* Theme Toggle Styles */
.theme-toggle[b-ai70dskg10] {
    width: 42px;
    height: 42px;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.theme-toggle:hover[b-ai70dskg10] {
    transform: rotate(180deg) scale(1.1);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.theme-toggle svg[b-ai70dskg10] {
    color: var(--text-primary);
    transition: color var(--transition-base);
}

@media screen and (max-width: 768px) {
    .theme-toggle[b-ai70dskg10] {
        width: 38px;
        height: 38px;
    }
}
/* /Layout/Footer.razor.rz.scp.css */
#contact[b-7409b726qj] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 5rem 0 3rem;
  width: 100vw;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  position: relative;
  overflow: hidden;
}

#contact[b-7409b726qj]::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.05'%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");
  opacity: 1;
  z-index: 0;
}

#contact > *[b-7409b726qj] {
  position: relative;
  z-index: 1;
}

#contact .social-links[b-7409b726qj] {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

#contact .social-links a[b-7409b726qj] {
  transition: transform 0.3s ease;
}

#contact .social-links a:hover[b-7409b726qj] {
  transform: translateY(-5px);
}

#contact p[b-7409b726qj] {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
/* /Layout/Header.razor.rz.scp.css */
/* ===== Header base (desktop) ===== */
#header[b-ydjoau1l4k] {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

[data-theme="dark"] #header[b-ydjoau1l4k] {
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ===== Navigation ===== */
.header-nav[b-ydjoau1l4k] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

/* ===== Header actions ===== */
.header-actions[b-ydjoau1l4k] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ===== Nav links ===== */
#header a[b-ydjoau1l4k] {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

#header a[b-ydjoau1l4k]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

#header a:hover[b-ydjoau1l4k] {
    color: var(--color-primary);
}

#header a:hover[b-ydjoau1l4k]::after {
    width: 100%;
}

#header a.active[b-ydjoau1l4k]::after {
    width: 100%;
}

/* ===== Hamburger button (hidden on desktop) ===== */
.menu-toggle[b-ydjoau1l4k] {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger-line[b-ydjoau1l4k] {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
#header.menu-open .hamburger-line:nth-child(1)[b-ydjoau1l4k] {
    transform: translateY(8px) rotate(45deg);
}

#header.menu-open .hamburger-line:nth-child(2)[b-ydjoau1l4k] {
    opacity: 0;
}

#header.menu-open .hamburger-line:nth-child(3)[b-ydjoau1l4k] {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== Tablet ===== */
@media screen and (max-width: 1024px) {
    .header-nav[b-ydjoau1l4k] {
        gap: 1.25rem;
    }

    #header a[b-ydjoau1l4k] {
        font-size: 0.85rem;
    }
}

/* ===== Mobile ===== */
@media screen and (max-width: 768px) {
    #header[b-ydjoau1l4k] {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
    }

    .menu-toggle[b-ydjoau1l4k] {
        display: flex;
        order: 2;
    }

    .header-actions[b-ydjoau1l4k] {
        order: 1;
        gap: 0.75rem;
    }

    .header-nav[b-ydjoau1l4k] {
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
        margin-top: 0;
    }

    #header.menu-open .header-nav[b-ydjoau1l4k] {
        max-height: 500px;
        opacity: 1;
        margin-top: 0.75rem;
        border-top: 1px solid rgba(128, 128, 128, 0.2);
        padding-top: 0.5rem;
    }

    #header .header-nav a[b-ydjoau1l4k] {
        text-align: center;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
        transition: background 0.2s ease, color 0.3s ease;
    }

    #header .header-nav a:hover[b-ydjoau1l4k] {
        background: rgba(128, 128, 128, 0.1);
    }

    #header .header-nav a[b-ydjoau1l4k]::after {
        display: none;
    }

    #header .header-nav a.active[b-ydjoau1l4k] {
        color: var(--color-primary);
        background: rgba(99, 102, 241, 0.1);
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
/* Skip navigation link — WCAG 2.1 compliance */
.skip-nav[b-vxqp76xmab] {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--color-primary, #2563eb);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 0.5rem 0;
}

.skip-nav:focus[b-vxqp76xmab] {
    position: fixed;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    outline: 3px solid #fff;
}

.page[b-vxqp76xmab] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-vxqp76xmab] {
    flex: 1;
}

.sidebar[b-vxqp76xmab] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-vxqp76xmab] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-vxqp76xmab]  a, .top-row[b-vxqp76xmab]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-vxqp76xmab]  a:hover, .top-row[b-vxqp76xmab]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-vxqp76xmab]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-vxqp76xmab] {
        justify-content: space-between;
    }

    .top-row[b-vxqp76xmab]  a, .top-row[b-vxqp76xmab]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-vxqp76xmab] {
        flex-direction: row;
    }

    .sidebar[b-vxqp76xmab] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-vxqp76xmab] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-vxqp76xmab]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-vxqp76xmab], article[b-vxqp76xmab] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/NotFound.razor.rz.scp.css */
.not-found-section[b-2m1m6rmwfo] {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.not-found-container[b-2m1m6rmwfo] {
    text-align: center;
    max-width: 500px;
}

.not-found-icon[b-2m1m6rmwfo] {
    color: var(--accent-color, #2563eb);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.not-found-code[b-2m1m6rmwfo] {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.not-found-title[b-2m1m6rmwfo] {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: var(--text-color, #e2e8f0);
}

.not-found-message[b-2m1m6rmwfo] {
    color: var(--text-secondary, #94a3b8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.not-found-button[b-2m1m6rmwfo] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.not-found-button:hover[b-2m1m6rmwfo] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}
