 :root {
            --sidebar-width: 260px;
            --sidebar-bg: #ffffff;
            --main-bg: #f3f4f6;
            --accent: #4f46e5;
            --accent-blue: #00a1e4;
            --primary-blue: #0056b3;
            --header-bg: #ffffff;
            --card-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        }

        body { 
            font-family: 'Host Grotesk', sans-serif; 
            background-color: var(--main-bg); 
            margin: 0; 
            color: #1e293b;
        }

        /* --- SIDEBAR STYLE --- */
        #sidebar {
            width: var(--sidebar-width);
            height: 100vh;
            position: fixed;
            left: 0; top: 0;
            background: var(--sidebar-bg);
            border-right: 1px solid #e2e8f0;
            z-index: 1100;
            display: flex;
            flex-direction: column;
            transition: 0.3s;
        }

        .sidebar-header {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid #f1f5f9;
        }

        .sidebar-menu { overflow-y: auto; flex-grow: 1; padding-top: 10px; }

        .nav-link {
            padding: 12px 18px; 
            margin: 4px 12px; 
            border-radius: 8px;
            color: #475569; 
            text-decoration: none; 
            display: flex;
            align-items: center; 
            font-weight: 500; 
            transition: 0.2s;
            white-space: nowrap; /* Text hidden fix */
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .nav-link:hover, .nav-link.active { background: #eef2ff; color: var(--accent); }
        .nav-link i { width: 28px; font-size: 1.1rem; }

        /* --- DONATION BOX IN SIDEBAR --- */
        .donation-sidebar {
            margin: 15px;
            padding: 15px;
            background: #fff5f5;
            border: 1px dashed #f87171;
            border-radius: 12px;
            text-align: center;
        }
        .donation-sidebar p { font-size: 0.75rem; color: #991b1b; margin-bottom: 10px; line-height: 1.4; }
        .btn-donate { background: #dc2626; color: #fff; font-size: 0.8rem; padding: 6px 12px; border-radius: 6px; text-decoration: none; font-weight: 600; display: inline-block; transition: 0.3s; }
        .btn-donate:hover { background: #b91c1c; color: #fff; }

        /* --- HEADER & CONTENT --- */
        #main-header {
            margin-left: var(--sidebar-width);
            height: 70px; background: var(--header-bg);
            display: flex; align-items: center; padding: 0 30px;
            position: sticky; top: 0; z-index: 1000;
            border-bottom: 1px solid #e2e8f0; transition: 0.3s;
        }

        .content-body { margin-left: var(--sidebar-width); padding: 30px 20px; min-height: calc(100vh - 70px); }
 
        /* --- SUMMARY --- */
        .summary { display: flex; flex-wrap: wrap; background: #f0f9ff; padding: 20px; gap: 20px; border-top: 1px solid #bae6fd; }
        .summary p { margin: 0; flex: 1; min-width: 150px; font-size: 0.8rem; color: #0369a1; font-weight: 700; text-transform: uppercase; }
        .summary p span { display: block; font-size: 1.1rem; color: #0c4a6e; font-weight: 800; }

        /* --- FOOTER --- */
        .main-footer { margin-left: var(--sidebar-width); background: #ffffff; padding: 30px 20px; border-top: 1px solid #e2e8f0; transition: 0.3s; }
        .footer-links a { color: var(--accent); text-decoration: none; margin-left: 15px; font-size: 0.9rem; }

        @media (max-width: 992px) {
            #sidebar { left: -260px; }
            #sidebar.open { left: 0; }
            #main-header, .content-body, .main-footer { margin-left: 0; }
        }
		
		
		
		/* Sidebar Close Button Styling */
#closeSidebar {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Round shape */
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth animation */
    color: #64748b; /* Default color */
}

/* Jab mouse button par jaye (Hover Effect) */
#closeSidebar:hover {
    background-color: #fee2e2; /* Halka red background */
    color: #ef4444; /* Dark red icon color */
    transform: rotate(90deg); /* Icon halka ghum jayega */
}

/* Jab button click ho (Active State) */
#closeSidebar:active {
    transform: scale(0.9); /* Halka sa chota hoga click par */
}

/* Mobile par dikhne ke liye LG se niche display block rahega */
@media (max-width: 991.98px) {
    #closeSidebar {
        display: flex !important;
    }
}




 .main-footer {
        margin-left: var(--sidebar-width);
        background: #ffffff;
        padding: 40px 20px;
        border-top: 1px solid #e2e8f0;
        transition: 0.3s;
    }
    .footer-heading {
        font-size: 1rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 15px;
    }
    .footer-links-list {
        list-style: none;
        padding: 0;
    }
    .footer-links-list li {
        margin-bottom: 8px;
    }
    .footer-links-list a {
        color: #64748b;
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.2s;
    }
    .footer-links-list a:hover {
        color: var(--accent);
        padding-left: 5px;
    }
    .copyright-bar {
        border-top: 1px solid #f1f5f9;
        margin-top: 25px;
        padding-top: 20px;
        font-size: 0.85rem;
        color: #94a3b8;
    }
    @media (max-width: 992px) {
        .main-footer { margin-left: 0; text-align: center; }
    }
	
/* RIGHT CLICK MENU STYLE */
#contextMenu {
    display: none;
    position: absolute;
    z-index: 9999;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 5px 0;
}
.context-menu-item {
    padding: 8px 15px;
    display: flex;
    align-items: center;
    color: #475569;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
}
.context-menu-item:hover {
    background: #4f46e5;
    color: white !important;
}
.context-menu-item i {
    width: 25px;
}
.context-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 4px 0;
}