
        body {
            font-family: Arial;
            margin: 0;
            background-color: #f4f6f9;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .topbar {
            background: #2c3e50;
            color: white;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 100;
        }

        .topbar a {
            color: white;
            text-decoration: none;
            margin-left: 15px;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 13px;
        }

        .topbar a:hover {
            background-color: #34495e;
        }
        /* Topbar detail styles - specific to top bar */
        .topbar-detail-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .topbar-detail-label {
            color: #bdc3c7;
        }

        .topbar-detail-value {
            color: white;
            background-color: #34495e;
            padding: 2px 8px;
            border-radius: 12px;
        }
                /* Fixed Dropdown Styles */
        .dropdown {
            position: relative;
            display: inline-block;
        }

        .dropdown-trigger {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 4px 8px;
            border-radius: 4px;
        }

        .dropdown-trigger:hover {
            background-color: #34495e;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            right: 0;
            top: 100%;
            background-color: white;
            min-width: 220px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            border-radius: 6px;
            z-index: 1000;
            margin-top: 0;  /* Remove gap */
            border: 1px solid #e2e8f0;
        }

        /* Add invisible bridge to prevent gap issues */
        .dropdown::after {
            content: '';
            position: absolute;
            height: 10px;
            width: 100%;
            bottom: -10px;
            left: 0;
            background: transparent;
        }

        .dropdown:hover .dropdown-content,
        .dropdown-content:hover {
            display: block;
        }

        .dropdown-content a {
            color: #2c3e50 !important;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            font-size: 13px;
            margin: 0;
            border-bottom: 1px solid #edf2f7;
            background: white !important;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #f7fafc !important;
            color: #27ae60 !important;
        }

        .container {
            padding: 15px;
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
            box-sizing: border-box;
        }
        
        .welcome-section {
            display: flex;
            flex-direction: column;
        }
        
        .welcome-text {
            font-size: 15px;
            font-weight: bold;
            margin-bottom: 4px;
        }
        
        .welcome-text span {
            color: #27ae60;
        }
        
        .employee-details {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: #ecf0f1;
            flex-wrap: wrap;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .detail-label {
            color: #bdc3c7;
        }
        
        .detail-value {
            color: white;
            background-color: #34495e;
            padding: 2px 8px;
            border-radius: 12px;
        }
        
        /* Footer Styles */
        .footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 15px 20px;
            margin-top: 30px;
            font-size: 12px;
            border-top: 3px solid #27ae60;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-copyright {
            color: #bdc3c7;
        }
        
        .footer-copyright strong {
            color: #27ae60;
            font-weight: 600;
        }
        
        .footer-company {
            color: #bdc3c7;
        }
        
        .footer-company span {
            color: #27ae60;
            font-weight: bold;
        }
        
        .back-links {
            margin-top: 15px;
            margin-bottom: 10px;
            font-size: 12px;
            padding: 10px 0;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }
        
        .back-links a {
            color: #3498db;
            text-decoration: none;
            margin-right: 10px;
        }
        
        .back-links a:hover {
            text-decoration: underline;
        }

        .alert {
            background-color: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #28a745;
        }

        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border-left-color: #dc3545;
        }
        
        @media screen and (max-width: 768px) {
            .topbar {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .employee-details {
                gap: 8px;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* Dashboard specific styles */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 2rem;
        }

        .stat-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-left: 4px solid #27ae60;
        }

        .stat-card h3 {
            color: #666;
            font-size: 14px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 600;
            color: #2c3e50;
        }

        .stat-desc {
            color: #999;
            font-size: 13px;
            margin-top: 5px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .menu-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            border: 1px solid #eee;
        }

        .menu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .menu-icon {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .menu-card h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .menu-card p {
            color: #666;
            font-size: 12px;
        }

        .welcome-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .welcome-card h1 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .welcome-card p {
            opacity: 0.9;
            font-size: 16px;
        }

        .company-badge {
            background: rgba(255,255,255,0.2);
            display: inline-block;
            padding: 5px 15px;
            border-radius: 20px;
            margin-top: 15px;
            font-size: 14px;
        }
   