/* _content/AuqafADP/Components/Layout/DynamicMenu.razor.rz.scp.css */
/* Left Sidebar White Design */
.left-sidebar[b-erds0zm9eq] {
    position: fixed;
    top: 60px;
    left: 0;
    width: 260px;
    height: calc(100vh - 60px);
    background: #ffffff;
    overflow-y: auto;
    transition: transform 0.3s;
    z-index: 999;
    box-shadow: 2px 0 8px rgba(0,0,0,0.05);
}

/* Logo Section at Top */
.sidebar-logo[b-erds0zm9eq] {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

    .sidebar-logo img[b-erds0zm9eq] {
        max-height: 50px;
        margin-bottom: 10px;
    }

/* Menu Toggle Button */
.menu-toggle[b-erds0zm9eq] {
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: #2c7a7b;
    font-size: 1.5rem;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

    .menu-toggle:hover[b-erds0zm9eq] {
        background: #f7fafc;
    }

/* Navigation Menu */
.nav-sidebar[b-erds0zm9eq] {
    padding: 10px 0;
}

.nav-item[b-erds0zm9eq] {
    margin: 2px 0;
}

/* Menu Item Links */
.menu-item[b-erds0zm9eq] {
    color: #4a5568;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    user-select: none;
}

    .menu-item:hover[b-erds0zm9eq] {
        background: #f7fafc;
        color: #2c7a7b;
        border-left-color: #e8e8e8;
    }

    .menu-item.active[b-erds0zm9eq] {
        background: #e6f7f7;
        color: #2c7a7b;
        border-left-color: #2c7a7b;
    }

/* Menu Icons */
.menu-icon[b-erds0zm9eq] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #2c7a7b;
    background: #e6f7f7;
    border-radius: 6px;
    padding: 4px;
}

.menu-item:hover .menu-icon[b-erds0zm9eq],
.menu-item.active .menu-icon[b-erds0zm9eq] {
    background: #2c7a7b;
    color: white;
}

/* Menu Text */
.menu-text[b-erds0zm9eq] {
    flex: 1;
}

/* Submenu Arrow */
.submenu-arrow[b-erds0zm9eq] {
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: #a0aec0;
}

    .submenu-arrow.open[b-erds0zm9eq] {
        transform: rotate(180deg);
    }

/* Submenu Container */
.submenu[b-erds0zm9eq] {
    background: #f7fafc;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    border-left: 2px solid #e8e8e8;
    margin-left: 20px;
}

    .submenu.show[b-erds0zm9eq] {
        max-height: 500px !important;
    }

/* Submenu Items */
.submenu-item[b-erds0zm9eq] {
    padding: 12px 20px 12px 46px;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
    position: relative;
}

    .submenu-item[b-erds0zm9eq]::before {
        content: '';
        position: absolute;
        left: 30px;
        width: 6px;
        height: 6px;
        background: #cbd5e0;
        border-radius: 50%;
    }

    .submenu-item:hover[b-erds0zm9eq] {
        background: #edf2f7;
        color: #2c7a7b;
    }

        .submenu-item:hover[b-erds0zm9eq]::before {
            background: #2c7a7b;
        }

    .submenu-item.active[b-erds0zm9eq] {
        color: #2c7a7b;
        font-weight: 600;
    }

        .submenu-item.active[b-erds0zm9eq]::before {
            background: #2c7a7b;
            width: 8px;
            height: 8px;
        }

/* Scrollbar Styling */
.left-sidebar[b-erds0zm9eq]::-webkit-scrollbar {
    width: 6px;
}

.left-sidebar[b-erds0zm9eq]::-webkit-scrollbar-track {
    background: #f7fafc;
}

.left-sidebar[b-erds0zm9eq]::-webkit-scrollbar-thumb {
    background: #cbd5e0;
    border-radius: 3px;
}

    .left-sidebar[b-erds0zm9eq]::-webkit-scrollbar-thumb:hover {
        background: #a0aec0;
    }

/* Dashboard Special Styling */
.menu-item.dashboard[b-erds0zm9eq] {
    background: #e6f7f7;
    color: #2c7a7b;
    border-left-color: #2c7a7b;
    margin: 5px 10px;
    border-radius: 8px;
}

    .menu-item.dashboard .menu-icon[b-erds0zm9eq] {
        background: #2c7a7b;
        color: white;
    }

/* Divider */
.menu-divider[b-erds0zm9eq] {
    height: 1px;
    background: #e8e8e8;
    margin: 10px 20px;
}

/* Menu Section Title */
.menu-section-title[b-erds0zm9eq] {
    padding: 15px 20px 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .left-sidebar[b-erds0zm9eq] {
        transform: translateX(-260px);
    }

        .left-sidebar.mobile-open[b-erds0zm9eq] {
            transform: translateX(0);
        }
}

/* Animation for menu items */
@keyframes slideIn-b-erds0zm9eq {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-item[b-erds0zm9eq],
.submenu-item[b-erds0zm9eq] {
    animation: slideIn-b-erds0zm9eq 0.3s ease;
}

/* Hover effect for better UX */
.menu-item[b-erds0zm9eq],
.submenu-item[b-erds0zm9eq] {
    position: relative;
    overflow: hidden;
}

    .menu-item[b-erds0zm9eq]::after,
    .submenu-item[b-erds0zm9eq]::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: rgba(44, 122, 123, 0.05);
        transition: width 0.3s ease;
    }

    .menu-item:hover[b-erds0zm9eq]::after,
    .submenu-item:hover[b-erds0zm9eq]::after {
        width: 100%;
    }

/* Badge/Count styling (optional) */
.menu-badge[b-erds0zm9eq] {
    background: #2c7a7b;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

/* Active state glow effect */
.menu-item.active[b-erds0zm9eq] {
    box-shadow: inset 0 0 0 1px rgba(44, 122, 123, 0.1);
}

/* Tooltip for collapsed sidebar (optional future enhancement) */
.menu-item[data-tooltip][b-erds0zm9eq] {
    position: relative;
}

    .menu-item[data-tooltip]:hover[b-erds0zm9eq]::before {
        content: attr(data-tooltip);
        position: absolute;
        left: 100%;
        top: 50%;
        transform: translateY(-50%);
        background: #2d3748;
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        white-space: nowrap;
        margin-left: 10px;
        font-size: 0.85rem;
        z-index: 1000;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* Perfect for icons library like Font Awesome or Bootstrap Icons */
.menu-icon i[b-erds0zm9eq] {
    display: block;
}

/* Additional polish */
.menu-item[b-erds0zm9eq],
.submenu-item[b-erds0zm9eq] {
    user-select: none;
}

    /* Focus states for accessibility */
    .menu-item:focus[b-erds0zm9eq],
    .submenu-item:focus[b-erds0zm9eq] {
        outline: 2px solid #2c7a7b;
        outline-offset: -2px;
    }

/* Smooth transitions for all interactive elements */
*[b-erds0zm9eq] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sidebar-logo[b-erds0zm9eq] {
    width: 150px;
    transition: all 0.3s ease;
}

.sidebar.collapsed .sidebar-logo[b-erds0zm9eq] {
    width: 50px; /* smaller size when collapsed */
    margin-left: 10px;
    transition: all 0.3s ease;
}
/* _content/AuqafADP/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-kf14ovy388] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-kf14ovy388] {
    flex: 1;
}

.sidebar[b-kf14ovy388] {
    background-image: linear-gradient(180deg, rgb(255, 255, 255) 0%, #ffffff 70%);
    
}

.top-row[b-kf14ovy388] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-kf14ovy388]  a, .top-row[b-kf14ovy388]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-kf14ovy388]  a:hover, .top-row[b-kf14ovy388]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-kf14ovy388]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-kf14ovy388] {
        justify-content: space-between;
    }

    .top-row[b-kf14ovy388]  a, .top-row[b-kf14ovy388]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-kf14ovy388] {
        flex-direction: row;
    }

    .sidebar[b-kf14ovy388] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-kf14ovy388] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-kf14ovy388]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-kf14ovy388], article[b-kf14ovy388] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-kf14ovy388] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-kf14ovy388] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/AuqafADP/Components/Pages/ChartComponent.razor.rz.scp.css */
.chart-section[b-ryckegh3wo] {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.section-title[b-ryckegh3wo] {
    color: #1e293b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
}

.chart-container[b-ryckegh3wo] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    min-height: 400px;
}

.chart-info-panel[b-ryckegh3wo] {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
}

.chart-title[b-ryckegh3wo] {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.data-status-list[b-ryckegh3wo] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item[b-ryckegh3wo] {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.status-label[b-ryckegh3wo] {
    color: #64748b;
    font-size: 14px;
}

.status-value[b-ryckegh3wo] {
    font-weight: 600;
    font-size: 14px;
}

.status-item.green-text .status-value[b-ryckegh3wo] {
    color: #10b981;
}

.status-item.orange-text .status-value[b-ryckegh3wo] {
    color: #f59e0b;
}

.status-item.purple-text .status-value[b-ryckegh3wo] {
    color: #7c3aed;
}

.status-item.pink-text .status-value[b-ryckegh3wo] {
    color: #ec4899;
}

.status-item.amber-text .status-value[b-ryckegh3wo] {
    color: #f59e0b;
}

.status-item.gray-text .status-value[b-ryckegh3wo] {
    color: #64748b;
}

.chart-area[b-ryckegh3wo] {
    display: flex;
    flex-direction: column;
}

.chart-legend[b-ryckegh3wo] {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.legend-item[b-ryckegh3wo] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.legend-color[b-ryckegh3wo] {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

    .legend-color.green-bg[b-ryckegh3wo] {
        background: #10b981;
    }

    .legend-color.orange-bg[b-ryckegh3wo] {
        background: #f59e0b;
    }

    .legend-color.purple-bg[b-ryckegh3wo] {
        background: #7c3aed;
    }

    .legend-color.pink-bg[b-ryckegh3wo] {
        background: #ec4899;
    }

    .legend-color.yellow-bg[b-ryckegh3wo] {
        background: #eab308;
    }

    .legend-color.teal-bg[b-ryckegh3wo] {
        background: #14b8a6;
    }

.bar-chart[b-ryckegh3wo] {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    min-height: 300px;
}

.bar[b-ryckegh3wo] {
    flex: 1;
    max-width: 80px;
    border-radius: 6px 6px 0 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    position: relative;
}

    .bar:hover[b-ryckegh3wo] {
        transform: scaleY(1.05);
        opacity: 0.9;
    }

    .bar.green-bar[b-ryckegh3wo] {
        background: linear-gradient(180deg, #10b981 0%, #059669 100%);
    }

    .bar.orange-bar[b-ryckegh3wo] {
        background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    }

    .bar.purple-bar[b-ryckegh3wo] {
        background: linear-gradient(180deg, #7c3aed 0%, #6d28d9 100%);
    }

    .bar.pink-bar[b-ryckegh3wo] {
        background: linear-gradient(180deg, #ec4899 0%, #db2777 100%);
    }

    .bar.yellow-bar[b-ryckegh3wo] {
        background: linear-gradient(180deg, #eab308 0%, #ca8a04 100%);
    }

    .bar.teal-bar[b-ryckegh3wo] {
        background: linear-gradient(180deg, #14b8a6 0%, #0d9488 100%);
    }

@media (max-width: 1024px) {
    .chart-container[b-ryckegh3wo] {
        grid-template-columns: 1fr;
    }

    .chart-section[b-ryckegh3wo] {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .chart-legend[b-ryckegh3wo] {
        gap: 10px;
    }

    .legend-item[b-ryckegh3wo] {
        font-size: 12px;
    }
}
/* _content/AuqafADP/Components/Pages/StatCard.razor.rz.scp.css */
.stat-card[b-0btpacv6md] {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .stat-card:hover[b-0btpacv6md] {
        transform: translateY(-4px);
        box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    }

    .stat-card.teal[b-0btpacv6md] {
        border-left-color: #0e7c7b;
    }

    .stat-card.blue[b-0btpacv6md] {
        border-left-color: #4a90e2;
    }

    .stat-card.cyan[b-0btpacv6md] {
        border-left-color: #00bcd4;
    }

    .stat-card.green[b-0btpacv6md] {
        border-left-color: #10b981;
    }

    .stat-card.purple[b-0btpacv6md] {
        border-left-color: #7c3aed;
    }

    .stat-card.lightblue[b-0btpacv6md] {
        border-left-color: #3b82f6;
    }

    .stat-card.mint[b-0btpacv6md] {
        border-left-color: #14b8a6;
    }

    .stat-card.yellow[b-0btpacv6md] {
        border-left-color: #f59e0b;
    }

.stat-content[b-0btpacv6md] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-info[b-0btpacv6md] {
    flex: 1;
}

.stat-label[b-0btpacv6md] {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value[b-0btpacv6md] {
    color: #1e293b;
    font-size: 32px;
    font-weight: 700;
}

.stat-icon[b-0btpacv6md] {
    font-size: 48px;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .stat-card[b-0btpacv6md] {
        padding: 20px;
    }

    .stat-value[b-0btpacv6md] {
        font-size: 28px;
    }

    .stat-icon[b-0btpacv6md] {
        font-size: 40px;
    }
}
