/* Chatwoot Sidebar Widget Styling */
.sidebar-chatwoot-form,
.chatwoot-sidebar-form {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 12px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.chatwoot-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.chatwoot-widget-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: white;
    line-height: 32px;
}

.chatwoot-description {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.chatwoot-form-content {
    margin-bottom: 12px;
}

.chatwoot-form-content * {
    color: white !important;
}

.chatwoot-title-row {
    margin-bottom: 5px;
}

.chatwoot-subtitle-row {
    width: 100%;
}

.chatwoot-avatar {
    flex-shrink: 0;
}

.avatar-circle {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    backdrop-filter: blur(10px);
}

.chatwoot-title {
    font-size: 16px;
    margin: 0;
    font-weight: bold;
    text-align: center;
}

.chatwoot-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
    text-align: left;
    line-height: 1.4;
}

.chatwoot-sidebar-btn {
    background: white !important;
    color: #667eea !important;
    border: none !important;
    border-radius: 18px !important;
    padding: 10px 16px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin: 0 !important;
    height: 38px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

.chatwoot-sidebar-btn:hover {
    background: #f8f9ff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

/* Mobile Responsive */
@media only screen and (max-width: 48em) {
    .chatwoot-form-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .chatwoot-text {
        text-align: center;
    }
    
    .avatar-circle {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}