/**
 * Header Auth Shortcode Styles
 */

.melk-header-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.melk-header-auth-guest {
    flex-direction: row;
}

.melk-header-auth-logged-in {
    flex-direction: row;
    align-items: center;
}

.welcome-text {
    font-size: 0.95rem;
    color: #1a1a1a;
    font-weight: 500;
    margin-left: 12px;
}

.logout-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.header-auth-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.header-auth-btn-login {
    background: #dc2626;
    color: #ffffff;
}

.header-auth-btn-login:hover {
    background: #b91c1c;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.header-auth-btn-register {
    background: #f3f4f6;
    color: #1a1a1a;
    border: 2px solid #e5e7eb;
}

.header-auth-btn-register:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .melk-header-auth {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .melk-header-auth-guest {
        flex-direction: column;
    }
    
    .header-auth-btn {
        width: 100%;
        justify-content: center;
    }
    
    .welcome-text {
        margin-left: 0;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .logout-btn {
        width: 100%;
        justify-content: center;
    }
}

