.sscb-chatbot-container {
    max-width: 600px;
    margin: 2rem auto;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 1rem;
    background: #fafafa;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sscb-chatbot-header h3 {
    margin-top: 0;
    margin-bottom: 0.25rem;
}

.sscb-chatbot-header p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: #555;
}

.sscb-chat-window {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0.75rem;
    background: #ffffff;
    margin-bottom: 0.75rem;
}

.sscb-message {
    display: flex;
    margin-bottom: 0.5rem;
}

.sscb-message-inner {
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.sscb-message-bot .sscb-message-inner {
    background: #f0f4ff;
    margin-right: auto;
}

.sscb-message-user .sscb-message-inner {
    background: #e8ffe8;
    margin-left: auto;
}

.sscb-chat-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#sscb-user-input {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ccc;
    padding: 0.5rem;
    resize: vertical;
    font-family: inherit;
}

#sscb-send-btn {
    align-self: flex-end;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #2563eb;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

#sscb-send-btn:disabled {
    opacity: 0.6;
    cursor: default;
}

.sscb-disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.75rem;
}
