.chatbot-auth-container {
    background: #111;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.chatbot-user-profile {
    display: block;
    padding: 0;
}

.user-header {
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
}

.user-avatar {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.user-info {
    flex: 1;
    overflow: hidden;
    padding: 0 12px;
    min-width: 0;
}

.user-name {
    color: #fff;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-email {
    color: #666;
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.logout-button, .chatbot-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: transparent;
    color: #666;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.2s ease;
    text-decoration: none;
    gap: 8px;
}

.logout-button:hover, .chatbot-login-button:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: #444;
}

.logout-button svg, .chatbot-login-button svg {
    width: 14px;
    height: 14px;
}

.chatbot-login-button {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.chatbot-login-button:hover {
    background: #333;
    color: #fff;
}

.chatbot-login-button svg {
    width: 16px;
    height: 16px;
}

.chatbot-login-button span {
    line-height: 1;
}

@media (max-width: 480px) {
    .chatbot-auth-container {
        border-radius: 0;
        padding: 10px;
    }
}