.elinor-chatbot {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    font-family: inherit;
}

.elinor-chatbot__toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    background: #068293;
    color: #fff;
    box-shadow: 0 8px 24px rgba(6, 130, 147, 0.35);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.elinor-chatbot__toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(6, 130, 147, 0.45);
}

.elinor-chatbot__panel {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: min(360px, calc(100vw - 32px));
    height: 520px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.elinor-chatbot__header {
    background: linear-gradient(135deg, #068293, #045f6c);
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.elinor-chatbot__close {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.elinor-chatbot__messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f8fafc;
}

.elinor-chatbot__message {
    max-width: 88%;
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
    white-space: pre-wrap;
    line-height: 1.45;
    font-size: 14px;
}

.elinor-chatbot__message--bot {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    border-bottom-left-radius: 4px;
}

.elinor-chatbot__message--user {
    background: #068293;
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.elinor-chatbot__message strong {
    font-weight: 700;
}

.elinor-chatbot__suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px 12px;
    background: #f8fafc;
}

.elinor-chatbot__suggestion {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    cursor: pointer;
}

.elinor-chatbot__suggestion:hover {
    border-color: #068293;
    color: #068293;
}

.elinor-chatbot__form {
    display: flex;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

.elinor-chatbot__input {
    flex: 1;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
}

.elinor-chatbot__input:focus {
    border-color: #068293;
}

.elinor-chatbot__send {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #068293;
    color: #fff;
    cursor: pointer;
}

.elinor-chatbot__typing {
    font-size: 13px;
    color: #64748b;
    padding: 4px 0 8px;
}

@media (max-width: 575px) {
    .elinor-chatbot {
        right: 16px;
        bottom: 16px;
    }

    .elinor-chatbot__panel {
        height: min(70vh, 520px);
    }
}
