        :root {
            --primary-gradient: linear-gradient(135deg, #1e5799, #207cca);
            --secondary-color: #207cca;
            --danger-color: #dc3545;
            --success-color: #28a745;
        }
        

        body {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .col-md-12 a {
            text-decoration: none;
            color: white;
        }
        /* Navbar Styling */
        .navbar {
            background: var(--primary-gradient) !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 0.5rem 1rem;
        }
        
        .nav-item {
            margin: 0 8px;
        }
        
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
            color: rgba(255,255,255,0.85) !important;
        }
        
        .nav-link:hover {
            transform: translateY(-2px);
            color: white !important;
        }
        
        .login-btn {
            border: 2px solid white;
            border-radius: 30px;
            padding: 5px 20px;
            transition: all 0.3s ease;
        }
        
        .login-btn:hover {
            background: white;
            color: var(--secondary-color) !important;
            transform: translateY(-3px);
        }
        
        /* Dashboard Styling */
        .dashboard-container {
            margin-top: 100px;
            margin-bottom: 50px;
        }
        
        .sidebar {
            background: var(--primary-gradient);
            color: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
            padding: 25px 20px;
        }
        
        .sidebar .nav-link {
            color: rgba(255,255,255,0.85) !important;
            padding: 12px 20px;
            border-radius: 8px;
            margin: 5px 0;
            transition: all 0.3s;
        }
        
        .sidebar .nav-link:hover, .sidebar .nav-link.active {
            background: rgba(255,255,255,0.15);
            transform: translateX(5px);
        }
        
        .sidebar .nav-link i {
            width: 25px;
            text-align: center;
            margin-right: 10px;
        }
        
        .dashboard-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            padding: 30px;
            margin-bottom: 30px;
            border: none;
            height: 100%;
        }
        
        .dashboard-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .profile-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 15px;
            background-color: var(--danger-color);
            color: white;
        }
        
        .btn-outline-primary {
            border-color: var(--secondary-color);
            color: var(--secondary-color);
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background: var(--secondary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .btn-outline-danger {
            border-color: var(--danger-color);
            color: var(--danger-color);
            transition: all 0.3s;
        }
        
        .btn-outline-danger:hover {
            background: var(--danger-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .verification-status {
            font-weight: bold;
            padding: 5px 15px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 15px;
        }
        
        .status-verified {
            background-color: rgba(40, 167, 69, 0.15);
            color: var(--success-color);
        }
        
        .status-not-verified {
            background-color: rgba(220, 53, 69, 0.15);
            color: var(--danger-color);
        }
