.hury-chatbot-launcher {
    position: fixed;
    z-index: 999997;
    border: 0;
    border-radius: 999px;
    background: #0d9a88;
    color: #fff;
    font-weight: 700;
    padding: 12px 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hury-chatbot-avatar {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    object-fit: cover;
}

.hury-chatbot-panel {
    position: fixed;
    z-index: 999998;
    width: 360px;
    max-width: calc(100vw - 24px);
    height: 560px;
    max-height: calc(100vh - 100px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    background: #fff;
    display: none;
}

.hury-chatbot-panel.is-open {
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.hury-chatbot-header {
    background: #11353c;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hury-chatbot-close {
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.hury-chatbot-log {
    background: #f3f7f8;
    overflow: auto;
    padding: 14px;
}

.hury-chatbot-message {
    max-width: 82%;
    margin: 8px 0;
    padding: 9px 11px;
    border-radius: 14px;
    line-height: 1.4;
    font-size: 14px;
}

.hury-chatbot-message-user {
    margin-left: auto;
    background: #11353c;
    color: #fff;
}

.hury-chatbot-message-assistant {
    border: 1px solid #dce7e6;
    background: #fff;
    color: #13272c;
}

.hury-chatbot-form {
    background: #fff;
    border-top: 1px solid #e2e8e7;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.hury-chatbot-form input {
    border: 1px solid #ccd7d6;
    border-radius: 10px;
    padding: 10px 12px;
    outline: none;
}

.hury-chatbot-form button {
    border: 0;
    border-radius: 10px;
    background: #0d9a88;
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
}

.hury-chatbot-form button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

@media (max-width: 767px) {
    .hury-chatbot-panel {
        width: calc(100vw - 20px);
        right: 10px !important;
        left: 10px !important;
    }
}
