/* Custom Background and General Styles */
        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            /* Attractive Background Image Placeholder */
            background: url('https://images.unsplash.com/photo-1542435503-9d8b74f3885d?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center fixed; 
            background-size: cover;
            color: #f8f9fa;
        }

        /* --- 1. Custom Transparent Navbar --- */
        .custom-navbar {
            background-color: rgba(44, 62, 80, 0.85);
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .custom-navbar .nav-link {
            color: #ecf0f1 !important;
            padding: 10px 18px;
            font-weight: 500;
            transition: background-color 0.3s, color 0.3s;
            border-radius: 5px;
        }

        .custom-navbar .nav-link:hover, 
        .custom-navbar .nav-link.active {
            background-color: rgba(52, 152, 219, 0.7);
            color: white !important;
        }

        /* Fix for Dropdown visibility: Added high z-index and positioning */
        .custom-dropdown {
            background-color: rgba(52, 73, 94, 0.95);
            backdrop-filter: blur(5px);
            z-index: 1050; /* Ensuring it stays above other content */
            border: none;
        }

        .custom-dropdown .dropdown-item {
            color: #ecf0f1;
            transition: background-color 0.2s;
        }

        .custom-dropdown .dropdown-item:hover {
            background-color: #3498db;
            color: white;
        }

        /* --- 2. Intro Text Styles --- */
        .intro-text h1, .intro-text p {
            /*text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);*/
        }

        /* --- 3. Donor Boxes (Cards) --- */
        .custom-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(3px);
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            padding: 15px;
        }

        .custom-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3) !important;
        }

        /* --- 4. Slide-Down Collapse Boxes --- */
        .custom-collapse-card {
            background: rgba(255, 255, 255, 0.98);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            margin-top: 20px; /* Added spacing from donor boxes */
        }

        .custom-collapse-card label {
            font-weight: 600;
            color: #34495e;
        }

        .submit-btn {
            width: 100%;
            margin-top: 15px;
            font-weight: bold;
        }
        
        /* --- 2. Intro Text Styles (NEW COLORFUL VERSION) --- */
.intro-text h1 {
    /* Text Color using Gradient effect */
    background: linear-gradient(45deg, #FFD700, #FF6347); /* Gold to Tomato Red gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* ***** FONT STYLE CHANGE HERE ***** */
    font-family: 'Monoton', cursive; 
    /* ********************************** */
    
    font-size: 3.5rem; /* Slightly larger font */
    font-weight: 900;
    
    /* Stronger shadow for depth and visibility */
    /*text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7), 0 0 10px rgba(255, 215, 0, 0.5); */
    letter-spacing: 5px; /* Added more letter spacing for Monoton */
    animation: bounce 2s infinite alternate; 
}

.intro-text p {
    color: #98fb98; /* Pale Green/Mint Color */
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    margin-top: 15px;
}

/* Optional: Keyframes for subtle "bounce" effect on H1 */
@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-5px);
    }
}

/* --- Binance Theme CSS --- */
        
        /* Global Background and Typography */
        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            /* Dark background typical of Binance UI */
            background-color: #121212; 
            color: #f0f0f0; /* Light text */
        }

        /* --- 1. Transparent Navbar (Frosted Glass) --- */
        .custom-navbar {
            background-color: rgba(22, 22, 22, 0.9); /* Very Dark with Transparency */
            backdrop-filter: blur(10px); /* Strong Frosted Glass Effect */
            box-shadow: 0 4px 15px rgba(0, 255, 128, 0.1); /* Subtle neon glow shadow */
        }

        .custom-navbar .nav-link {
            color: #d1d1d1 !important;
            padding: 10px 18px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .custom-navbar .nav-link:hover, 
        .custom-navbar .nav-link.active {
            color: #00ff80 !important; /* Binance Green/Neon Highlight */
            background-color: rgba(0, 255, 128, 0.1);
            border-radius: 4px;
        }

        .custom-dropdown {
            background-color: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(5px);
            z-index: 1050; 
            border: 1px solid #00ff80; /* Neon border */
        }

        .custom-dropdown .dropdown-item {
            color: #f0f0f0;
            transition: background-color 0.2s;
        }

        .custom-dropdown .dropdown-item:hover {
            background-color: #00ff80;
            color: #121212;
        }

        /* --- 2. Donor/Panel Boxes (Interactive Cards) --- */
        .custom-card {
            background: rgba(30, 30, 30, 0.85); /* Dark transparent card body */
            backdrop-filter: blur(5px);
            border: 1px solid rgba(0, 255, 128, 0.3); /* Subtle light border */
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s;
            padding: 20px;
        }

        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 255, 128, 0.4); /* Strong neon glow on hover */
            border-color: #00ff80;
        }
        
        .custom-card .card-title {
            color: #00ff80;
        }
        
        /* Value text */
        .custom-card .display-6 {
             color: #f0f0f0 !important;
        }
        
        .btn-select {
            background-color: #00ff80;
            color: #121212;
            border: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn-select:hover {
            background-color: #00e070;
            color: #121212;
        }

        /* --- 3. Slide-Down Collapse Boxes (Tables) --- */
        .custom-collapse-card {
            background: rgba(22, 22, 22, 0.95); /* Very dark, slightly transparent */
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0, 255, 128, 0.2); /* Soft green glow */
            margin-top: 30px;
            padding: 30px;
        }
        
        .custom-collapse-card h2 {
            color: #00ff80;
            margin-bottom: 20px;
        }
        
        /* Table Styles (Binance style) */
        .table-dark-custom {
            --bs-table-bg: #1e1e1e;
            --bs-table-color: #f0f0f0;
            --bs-table-hover-bg: #2a2a2a;
            border: 1px solid rgba(0, 255, 128, 0.2);
        }
        .table-dark-custom th {
            color: #00ff80;
            border-bottom-color: #00ff80;
        }
        
        /* Define Binance Yellow/Gold */
        :root {
            --binance-yellow: #F0B90B;
            --binance-dark: #121212;
        }

        /* Global Background and Typography */
        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            background-color: var(--binance-dark); 
            color: #f0f0f0; 
        }

        /* --- 1. Transparent Navbar (Frosted Glass) --- */
        .custom-navbar {
            background-color: rgba(22, 22, 22, 0.9); 
            backdrop-filter: blur(10px); 
            box-shadow: 0 4px 15px rgba(240, 185, 11, 0.15); /* Yellow subtle neon glow */
        }

        .custom-navbar .nav-link {
            color: #d1d1d1 !important;
            padding: 10px 18px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .custom-navbar .nav-link:hover, 
        .custom-navbar .nav-link.active {
            color: var(--binance-yellow) !important; /* Yellow Highlight */
            background-color: rgba(240, 185, 11, 0.1);
            border-radius: 4px;
        }

        .custom-dropdown {
            background-color: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(5px);
            z-index: 1050; 
            border: 1px solid var(--binance-yellow); /* Yellow border */
        }

        .custom-dropdown .dropdown-item {
            color: #f0f0f0;
            transition: background-color 0.2s;
        }

        .custom-dropdown .dropdown-item:hover {
            background-color: var(--binance-yellow);
            color: var(--binance-dark);
        }
        
        /* Intro Text - Adjusted to fit new theme */
        .lead {
            color: #909090 !important;
        }


        /* --- 2. Donor/Panel Boxes (Interactive Cards) --- */
        .custom-card {
            background: rgba(30, 30, 30, 0.85); 
            backdrop-filter: blur(5px);
            border: 1px solid rgba(240, 185, 11, 0.3); /* Subtle yellow light border */
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s;
            padding: 20px;
        }

        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(240, 185, 11, 0.4); /* Strong yellow neon glow on hover */
            border-color: var(--binance-yellow);
        }
        
        .custom-card .card-title {
            color: var(--binance-yellow);
        }
        
        .custom-card .display-6 {
             color: #f0f0f0;
        }
        
        .btn-select {
            background-color: var(--binance-yellow); /* Yellow Button */
            color: var(--binance-dark);
            border: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn-select:hover {
            background-color: #e0ac0a; /* Slightly darker yellow on hover */
            color: var(--binance-dark);
        }

        /* --- 3. Slide-Down Collapse Boxes (Tables) --- */
        .custom-collapse-card {
            background: rgba(22, 22, 22, 0.95); 
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(240, 185, 11, 0.2); /* Soft yellow glow */
            margin-top: 30px;
            padding: 30px;
        }
        
        .custom-collapse-card h2 {
            color: var(--binance-yellow);
            margin-bottom: 20px;
        }
        
        /* Table Styles (Binance style) */
        .table-dark-custom {
            --bs-table-bg: #1e1e1e;
            --bs-table-color: #f0f0f0;
            --bs-table-hover-bg: #2a2a2a;
            border: 1px solid rgba(240, 185, 11, 0.2);
        }
        .table-dark-custom th {
            color: var(--binance-yellow);
            border-bottom-color: var(--binance-yellow);
        }
        
        /* Ensure Success/Active status remains readable */
        .text-success {
            color: #00e070 !important; /* Retaining some green for 'Active' status */
        }
        .text-danger {
            color: #e74c3c !important; /* Retaining red for 'Pending' status */
        }
        
        .table-striped>tbody>tr:nth-of-type(odd)>* {
            --bs-table-color-type: #ffffff;
            /*--bs-table-bg-type: var(--bs-table-striped-bg);*/
        }
        
        
        /*Income Panel*/
        /* --- Binance Theme CSS (Binance Yellow: #F0B90B) --- */
        
        /* Define Binance Yellow/Gold */
        :root {
            --binance-yellow: #F0B90B;
            --binance-dark: #121212;
        }

        /* Global Background and Typography */
        body {
            font-family: 'Poppins', sans-serif;
            min-height: 100vh;
            background-color: var(--binance-dark); 
            color: #f0f0f0; 
        }

        /* --- 1. Transparent Navbar --- */
        .custom-navbar {
            background-color: rgba(22, 22, 22, 0.9); 
            backdrop-filter: blur(10px); 
            box-shadow: 0 4px 15px rgba(240, 185, 11, 0.15); 
        }

        .custom-navbar .nav-link {
            color: #d1d1d1 !important;
            padding: 10px 18px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .custom-navbar .nav-link:hover, 
        .custom-navbar .nav-link.active {
            color: var(--binance-yellow) !important; 
            background-color: rgba(240, 185, 11, 0.1);
            border-radius: 4px;
        }

        .custom-dropdown {
            background-color: rgba(30, 30, 30, 0.95);
            backdrop-filter: blur(5px);
            z-index: 1050; 
            border: 1px solid var(--binance-yellow); 
        }

        .custom-dropdown .dropdown-item {
            color: #f0f0f0;
            transition: background-color 0.2s;
        }

        .custom-dropdown .dropdown-item:hover {
            background-color: var(--binance-yellow);
            color: var(--binance-dark);
        }
        
        /* --- 2. Income Boxes (Interactive Cards) --- */
        .custom-card {
            background: rgba(30, 30, 30, 0.85); 
            backdrop-filter: blur(5px);
            border: 1px solid rgba(240, 185, 11, 0.3); 
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s;
            padding: 20px;
        }

        .custom-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(240, 185, 11, 0.4); 
            border-color: var(--binance-yellow);
        }
        
        .custom-card .card-title {
            color: var(--binance-yellow);
        }
        
        .custom-card .display-6 {
             color: #f0f0f0;
        }
        
        .btn-select {
            background-color: var(--binance-yellow); 
            color: var(--binance-dark);
            border: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .btn-select:hover {
            background-color: #e0ac0a; 
            color: var(--binance-dark);
        }

        /* --- 3. Slide-Down Collapse Boxes (Tables) --- */
        .custom-collapse-card {
            background: rgba(22, 22, 22, 0.95); 
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(240, 185, 11, 0.2); 
            margin-top: 30px;
            padding: 30px;
        }
        
        .custom-collapse-card h2 {
            color: var(--binance-yellow);
            margin-bottom: 20px;
        }
        
        /* Table Styles (Binance style) */
        .table-dark-custom {
            --bs-table-bg: #1e1e1e;
            --bs-table-color: #f0f0f0;
            --bs-table-hover-bg: #2a2a2a;
            border: 1px solid rgba(240, 185, 11, 0.2);
        }
        .table-dark-custom th {
            color: var(--binance-yellow);
            border-bottom-color: var(--binance-yellow);
        }
        
        /* Utility Colors */
        .text-success { color: #00e070 !important; }
        .text-danger { color: #e74c3c !important; }