/* app/static/css/profile.css */

/* Estilos para el avatar del usuario en el header (base.html) */
.header-actions .user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-actions .profile-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.header-actions .profile-link:hover {
    color: var(--text-white);
}

.header-actions .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-right: 10px;
    border: 2px solid rgba(0, 230, 255, 0.5);
    transition: transform 0.2s ease-in-out;
}

.header-actions .profile-link:hover .avatar {
    transform: scale(1.1);
}
