:root {
            --primary-color: #007bff;
            --secondary-color: #6c757d;
            --success-color: #28a745;
            --info-color: #17a2b8;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
            --adminlte-primary: #3c8dbc;
            --adminlte-sidebar: #FCFCFD;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #f4f6f9;
            color: #333;
        }

        .navbar {
            padding: 20px 0;
            background: #FCFCFD;
        }

        .nav-item {
            padding: 10px;
        }

        .nav-item .btn {
            color: #FCFCFD;
        }

        .nav-item .btn:hover {
            color: #cbcbce;
        }

        .navbar ul li a.nav-link {
            font-weight: 700;
            font-size: 16px;
            color: #777E90;
            transition: 0.2s all ease;
        }

        .navbar ul li a:hover {
            color: #7EDBA8;
        }

        .navbar a.btn-login {
            font-family: "DM Sans", sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: #141416;
            border-radius: 90px;
            background: #7EDBA8;
            display: inline-block;
            padding: 12px 16px;
            text-decoration: none;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: #777E90;
        }
        
        .content-header {
            background-color: white;
            padding: 15px;
            border-bottom: 1px solid #dee2e6;
        }
        
        .content {
            padding: 20px;
        }
        
        .card {
            box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
            margin-bottom: 20px;
            border: 0;
        }
        
        .card-header {
            background-color: white;
            border-bottom: 1px solid rgba(0,0,0,.125);
            padding: 0.75rem 1.25rem;
        }
        
        .card-title {
            margin-bottom: 0;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .sidebar {
            background-color: var(--adminlte-sidebar);
            color: #777E90;
            min-height: calc(100vh - 56px);
            padding: 0;
        }
        
        .sidebar-menu {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .sidebar .boxenincludes {
            margin-top: 20px;
        }
        
        .sidebar-menu li {
            position: relative;
            margin: 0;
        }
        
        .sidebar-menu li a {
            padding: 12px 15px;
            display: block;
            color: #5f6a6c;
            text-decoration: none;
            border-left: 3px solid transparent;
            border-bottom: 1px solid rgba(134, 129, 129, 0.15);
        }
        
        .sidebar-menu li a:hover {
            color: rgb(68, 67, 67);
            background: #e9ecec;
            border-left-color: var(--adminlte-primary);
        }
        
        .sidebar-menu li.active > a {
            color: white;
            background: #1e282c;
            border-left-color: var(--adminlte-primary);
        }
        
        .sidebar-header {
            padding: 10px 15px;
            font-size: 1.1rem;
            background: #1a2226;
            color: #4b646f;
        }
        
        .feature-list {
            list-style: none;
            padding-left: 0;
        }
        
        .feature-list li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .feature-list li:before {
            content: "✓";
            color: var(--success-color);
            margin-right: 10px;
            font-weight: bold;
        }
        
        .footer {
            background-color: white;
            border-top: 1px solid #dee2e6;
            padding: 15px;
            text-align: center;
        }
        
        
        @media (max-width: 767.98px) {
            .sidebar {
                min-height: auto;
            }
        }
		
[data-bs-theme="dark"] .card {
  --bs-card-bg: #202020 !important; /* Even darker for dark mode */
}
@media (prefers-color-scheme: dark) {
  :root {
    --bs-card-bg: #2a2a2a !important; /* Dark mode */
  }
}