  :root {
            --bd-green: #006a4e;
            --bd-green-dark: #004d39;
            --bd-red: #f42a41;
            --sidebar-width: 270px;
            --topbar-height: 70px;
            --bg-light: #f4f6f9;
        }

        body {
            background-color: var(--bg-light);
            color: #333333;
            overflow-x: hidden;
        }

        .bf, .bf * {
            font-family: 'Adorsho Lipi', sans-serif;
        }

        /* Topbar Styling */
        .topbar {
            height: var(--topbar-height);
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            z-index: 1030;
            background-color: #25db0217;
            border-bottom: 3px solid var(--bd-green);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .gov-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .gov-brand img {
            height: 42px;
            width: auto;
        }

        .gov-brand .brand-text {
            line-height: 1.2;
        }

        .gov-brand .title {
            color: var(--bd-green);
            font-weight: 700;
            font-size: 1.15rem;
            margin: 0;
        }

        .gov-brand .subtitle {
            color: #666;
            font-size: 0.75rem;
            margin: 0;
        }

        /* Sidebar Styling */
        .sidebar {
            width: var(--sidebar-width);
            position: fixed;
            top: var(--topbar-height);
            bottom: 0;
            left: 0;
            z-index: 1020;
            background-color: #0d1e18;
            transition: all 0.3s ease;
            overflow-y: auto;
        }

        .sidebar-header {
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #a3b8b0;
            font-size: 0.8rem;
            letter-spacing: 0.5px;
        }

        .sidebar .nav-link {
            color: #b3c5be;
            padding: 13px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.95rem;
            border-left: 4px solid transparent;
            transition: all 0.2s ease;
        }

        .sidebar .nav-link:hover {
            color: #ffffff;
            background-color: rgba(255, 255, 255, 0.05);
            border-left-color: var(--bd-red);
        }

        .sidebar .nav-link.active {
            color: #ffffff;
            background-color: var(--bd-green);
            border-left-color: var(--bd-red);
            font-weight: 600;
        }

        .sidebar .nav-link i {
            font-size: 1.15rem;
        }

        /* Main Content Area */
        .main-content {
            margin-top: var(--topbar-height);
            margin-left: var(--sidebar-width);
            min-height: calc(100vh - var(--topbar-height) - 60px);
            padding: 28px;
            transition: all 0.3s ease;
        }

        /* Stat Cards */
        .stat-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            overflow: hidden;
            position: relative;
        }

        .stat-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
        }

        .stat-card.primary::before { background-color: var(--bd-green); }
        .stat-card.danger::before { background-color: var(--bd-red); }
        .stat-card.warning::before { background-color: #ff9800; }
        .stat-card.info::before { background-color: #00bcd4; }

        .icon-shape {
            width: 48px;
            height: 48px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        /* Notice & Table Card */
        .custom-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            background: #ffffff;
        }

        .custom-card .card-header {
            background-color: transparent;
            border-bottom: 1px solid #edf2f7;
            padding: 18px 24px;
        }

        .table > :not(caption) > * > * {
            padding: 14px 18px;
        }

        /* Footer */
        .footer {
            margin-left: var(--sidebar-width);
            height: 60px;
            background-color: #ffffff;
            border-top: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        .junait{
           top: 0!important;
        }

        /* Responsive Overlay */
        @media (max-width: 991.98px) {
            .sidebar {
                margin-left: calc(-1 * var(--sidebar-width));
            }
            .sidebar.show {
                margin-left: 0;
            }
            .main-content, .footer {
                margin-left: 0;
            }
        }