.saskia-chatbot {
    font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
    max-width: 520px;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.saskia-chatbot__header {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--saskia-primary);
    color: #ffffff;
    padding: 16px 20px;
}

.saskia-chatbot__logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.saskia-chatbot__title {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.saskia-chatbot__messages {
    min-height: 260px;
    max-height: 420px;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(180deg, #f6f8f7 0%, #ffffff 100%);
}

.saskia-chatbot__message {
    margin-bottom: 14px;
    line-height: 1.5;
    font-size: 15px;
}

.saskia-chatbot__timestamp {
    margin-top: 6px;
    font-size: 11px;
    color: #6f6f6f;
}

.saskia-chatbot__typing {
    font-size: 14px;
    color: #5a5a5a;
    font-style: italic;
    margin-bottom: 12px;
}

.saskia-chatbot__message--assistant {
    background: var(--saskia-secondary);
    padding: 12px 14px;
    border-radius: 12px 12px 12px 4px;
    color: #1b1b1b;
    width: 70%;
    margin-right: auto;
}

.saskia-chatbot__message--user {
    background: #1c1c1c;
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 12px 12px 4px 12px;
    text-align: right;
    width: 70%;
    margin-left: auto;
}

.saskia-chatbot__form {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-top: 1px solid #e8e8e8;
    background: #ffffff;
}
.saskia-chatbot__prefill {
    padding: 12px 16px;
    border-top: 1px solid #e8e8e8;
    background: #fbfbfb;
}

.saskia-chatbot__prefill.is-hidden {
    display: none;
}

.saskia-chatbot__prefill-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.saskia-chatbot__prefill-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.saskia-chatbot__prefill-fields input,
.saskia-chatbot__prefill-fields select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    background: #ffffff;
}

.saskia-chatbot__prefill-actions {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.saskia-chatbot__prefill-start {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #2f5d3a;
    background: #2f5d3a;
    color: #ffffff;
    cursor: pointer;
}

.saskia-chatbot__prefill-status {
    font-size: 12px;
    color: #6f6f6f;
}

.saskia-chatbot__quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.saskia-chatbot__quick-reply {
    border: 1px solid var(--saskia-primary);
    background: #ffffff;
    color: var(--saskia-primary);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
}

.saskia-chatbot__quick-reply:hover {
    background: var(--saskia-secondary);
}

.saskia-chatbot__input {
    flex: 1;
    border: 1px solid #d7d7d7;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 15px;
}

.saskia-chatbot__send {
    border: none;
    background: var(--saskia-primary);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

.saskia-chatbot__send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.saskia-chatbot__error {
    color: #b00020;
    font-size: 14px;
}
