/* This file styles the SMALL profile snippet in the header */

.profile-link {
    display: block;
    border-radius: var(--radius-lg);
    transition: background-color 0.2s ease;
}

.profile-link:hover {
    background-color: var(--input-bg-focus);
}

/* This is the main container inside the link */
.profile-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--focus-ring-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
}

.profile-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

