/* /Layout/MainLayout.razor.rz.scp.css */
/* App Layout */
.app-layout[b-0vxohseskp] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #0f1419;
}

/* Header */
.app-header[b-0vxohseskp] {
    background: linear-gradient(135deg, #1b4d2d 0%, #2d5016 100%);
    border-bottom: 3px solid #4a7c2f;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.app-brand[b-0vxohseskp] {
    display: flex;
    align-items: center;
    min-width: 0;
}

.app-logo-image[b-0vxohseskp] {
    display: block;
    height: 64px;
    width: auto;
    max-width: min(420px, 100%);
    object-fit: contain;
}

.search-container[b-0vxohseskp] {
    display: flex;
    align-items: center;
}

.search-link[b-0vxohseskp] {
    background: #4a7c2f;
    color: #c8e6c9;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1px solid #7cb342;
    cursor: pointer;
    font: inherit;
}

.search-link:hover[b-0vxohseskp] {
    background: #7cb342;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
}

/* Container with Sidebar */
.app-container[b-0vxohseskp] {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar */
.app-sidebar[b-0vxohseskp] {
    width: 220px;
    background: #1a1f28;
    border-right: 1px solid #2d3748;
    overflow-y: auto;
    padding: 1.5rem 0;
    flex-shrink: 0;
}

.app-sidebar[b-0vxohseskp]  .topics-title,
.app-sidebar[b-0vxohseskp]  .topic-item,
.app-sidebar[b-0vxohseskp]  .topics-status {
    padding-left: 9% !important;
}

/* Main Content */
.app-content[b-0vxohseskp] {
    flex: 1;
    overflow-y: auto;
    background: #0f1419;
}

/* Responsive */
@media (max-width: 768px) {
    .app-header[b-0vxohseskp] {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .app-logo-image[b-0vxohseskp] {
        height: 52px;
    }

    .app-container[b-0vxohseskp] {
        flex-direction: column;
    }

    .app-sidebar[b-0vxohseskp] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #2d3748;
        padding: 1rem 0;
        max-height: 300px;
    }
}

/* Scrollbar Styling */
.app-sidebar[b-0vxohseskp]::-webkit-scrollbar {
    width: 6px;
}

.app-sidebar[b-0vxohseskp]::-webkit-scrollbar-track {
    background: #1a1f28;
}

.app-sidebar[b-0vxohseskp]::-webkit-scrollbar-thumb {
    background: #4a7c2f;
    border-radius: 3px;
}

.app-sidebar[b-0vxohseskp]::-webkit-scrollbar-thumb:hover {
    background: #7cb342;
}
/* /Layout/NavMenu.razor.rz.scp.css */
.topics-menu[b-f7jp9hs9yo] {
    --menu-indent-left: 9%;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.topics-title[b-f7jp9hs9yo] {
    padding: 0 1.5rem 1rem calc(1.5rem + var(--menu-indent-left));
    color: #7cb342;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    border-bottom: 1px solid #2d3748;
}

.sale-title[b-f7jp9hs9yo] {
    margin-top: 1rem;
    padding-top: 0.9rem;
    border-top: 1px solid #3a4558;
}

.topics-grid[b-f7jp9hs9yo] {
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
}

.topic-item[b-f7jp9hs9yo] {
    padding: 0.875rem 1.5rem 0.875rem calc(1.5rem + var(--menu-indent-left));
    color: #c8e6c9;
    text-decoration: none;
    border-left: 3px solid transparent;
    border-bottom: 1px solid #2d3748;
    transition: all 0.2s ease;
    display: block;
    font-size: 0.95rem;
}

.topic-item:hover[b-f7jp9hs9yo] {
    background: #2d3748;
    border-left-color: #7cb342;
    color: #7cb342;
}

.topic-item.active[b-f7jp9hs9yo] {
    background: #2d5016;
    border-left-color: #4a7c2f;
    color: #7cb342;
    font-weight: 600;
}

.topics-status[b-f7jp9hs9yo] {
    padding: 1rem 1.5rem 1rem calc(1.5rem + var(--menu-indent-left));
    color: #9fb3a8;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .topics-title[b-f7jp9hs9yo] {
        padding: 0.5rem 1rem 0.5rem calc(1rem + var(--menu-indent-left));
    }

    .topic-item[b-f7jp9hs9yo] {
        padding: 0.75rem 1rem 0.75rem calc(1rem + var(--menu-indent-left));
    }

    .topics-status[b-f7jp9hs9yo] {
        padding: 0.75rem 1rem 0.75rem calc(1rem + var(--menu-indent-left));
    }
}
