/* css/header.css */

/* 
   Dedicated Header Styles 
   Unified across Admin and User Dashboards
*/

.auth-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 60px;
    background: #333333;
    /* Flat Dark Grey */
    display: flex;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.auth-header-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-header-logo-icon {
    height: 30px;
    width: auto;
}

.auth-header-title {
    font-family: 'Inter', sans-serif;
    color: white;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logout-btn {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 99px;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-family: inherit;
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 480px) {
    .auth-header {
        padding: 0 15px;
        height: 50px;
    }
    
    .auth-header-title {
        font-size: 16px;
    }
    
    .auth-header-logo-icon {
        height: 24px;
    }
    
    .logout-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}