/* Jet HR Style Header */
.jet-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: 72px;
    transition: all 0.3s ease;
}

.jet-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.jet-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.2s ease;
}

.jet-logo:hover {
    color: #667eea;
    text-decoration: none;
}

.jet-logo img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

/* Navigation Menu */
.jet-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jet-nav-item {
    position: relative;
}

.jet-nav-link {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.jet-nav-link:hover {
    color: #1f2937;
    background: rgba(0, 0, 0, 0.03);
    text-decoration: none;
}

.jet-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: #667eea;
    transition: transform 0.2s ease;
}

.jet-nav-link:hover::after,
.jet-nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.jet-nav-link.active {
    color: #667eea;
    font-weight: 700;
}

/* Dropdown Menu */
.jet-dropdown {
    position: relative;
}

.jet-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.3s ease;
    min-width: 200px;
    z-index: 1001;
    margin-top: 12px;
}

.jet-dropdown:hover .jet-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.jet-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.jet-dropdown-item:last-child {
    border-bottom: none;
}

.jet-dropdown-item:hover {
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
    text-decoration: none;
}

/* Action Buttons */
.jet-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.jet-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
}

.jet-btn-ghost {
    color: #4b5563;
    background: transparent;
    border: 1px solid #d1d5db;
}

.jet-btn-ghost:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: #9ca3af;
    color: #1f2937;
    text-decoration: none;
}

.jet-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 1px solid transparent;
}

.jet-btn-primary:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
    color: white;
    text-decoration: none;
}

/* Mobile Menu */
.jet-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    color: #4b5563;
    font-size: 1.25rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.jet-mobile-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1f2937;
}

.jet-mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
}

.jet-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.jet-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    gap: 8px;
}

.jet-mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #4b5563;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.jet-mobile-nav-link:hover,
.jet-mobile-nav-link.active {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea;
    text-decoration: none;
}

.jet-mobile-actions {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .jet-nav {
        display: none;
    }
    
    .jet-mobile-toggle {
        display: block;
    }
    
    .jet-actions .jet-btn {
        display: none;
    }
    
    .jet-header-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .jet-header-container {
        padding: 0 16px;
    }
    
    .jet-logo {
        font-size: 1.25rem;
    }
    
    .jet-logo img {
        width: 28px;
        height: 28px;
    }
}

/* Body adjustments for fixed header */
body {
    padding-top: 0 !important;
}

.main-content {
    padding-top: 0;
}

/* Remove sidebar styles */
.dashboard-layout {
    display: block !important;
}

.dashboard-sidebar {
    display: none !important;
}

.dashboard-main {
    margin-left: 0 !important;
    padding-top: 0;
}

.dashboard-header {
    display: none !important;
}