/* User Profile & Login */
.right-section {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-container {
    display: flex;
    align-items: center;
}

.login-btn {
    background-color: white;
    color: black;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 24px;
    border-radius: 500px;
    cursor: pointer;
    transition: transform 0.1s ease, background-color 0.1s ease;
}

.login-btn:hover {
    transform: scale(1.05);
    background-color: #f0f0f0;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 4px 12px 4px 4px;
    border-radius: 500px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.user-profile:hover {
    background-color: var(--bg-highlight);
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    /* background: transparent; */
    color: #b3b3b3;
    transition: color 0.2s ease;
}

.logout-btn:hover {
    color: white;
}

.logout-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}