/**
 * Authentication Styles
 * This file contains styles for authentication-related elements
 */

/* Auth Status */
.auth-status {
    margin-left: 20px;
    display: flex;
    align-items: center;
}

.login-link {
    background: var(--accent);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.login-link:hover {
    background: #0369a1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 105, 161, 0.3);
}

/* User Menu */
.user-menu {
    position: relative;
    margin-left: 20px;
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.user-menu-btn:hover {
    background: var(--gray-100);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    z-index: 100;
    display: none;
    animation: fadeIn 0.3s ease;
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-dropdown a:hover {
    background: var(--gray-100);
    color: var(--accent);
}

.user-dropdown a i {
    width: 20px;
    text-align: center;
    color: var(--accent);
}

.user-dropdown.active {
    display: block;
}

/* Signed In State */
.auth-status.signed-in {
    color: var(--accent);
    font-weight: 600;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
