.sl-chat {
    border: 1px solid #e6e1d8;
    border-radius: 14px;
    padding: 16px;
    background: #fffdf7;
    font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
    width: 100%;
    max-width: none;
    margin: 24px 0;
}

.sl-chat-header {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sl-chat-title {
    font-size: 20px;
    font-weight: 700;
    color: #3a2f1a;
}

.sl-chat-subtitle {
    font-size: 13px;
    color: #7a6a4a;
}

.sl-chat-messages {
    /*background: #fff;*/
    border: 1px solid #efe6d8;
    border-radius: 12px;
    padding: 12px;
    min-height: 180px;
    max-height: 360px;
    overflow-y: auto;
}

.sl-chat-bubble {
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 12px;
    line-height: 1.4;
    font-size: 14px;
    white-space: pre-wrap;
}

.sl-chat-user {
    background: #f3efe6;
    color: #3a2f1a;
    align-self: flex-end;
}

.sl-chat-assistant {
    background: #fff8e8;
    color: #2f2818;
    border: 1px solid #f1e3c8;
}

.sl-chat-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.sl-chat-input {
    flex: 1;
    border: 1px solid #e1d7c4;
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
    background-color: white !important;
}


.sl-chat-send {
    background: #bb950a;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
}

.sl-chat-actions {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.sl-chat-book {
    background: #fff;
    color: #bb950a;
    border: 1px solid #bb950a;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    cursor: pointer;
}

.sl-chat-book-header {
    margin-left: auto;
    white-space: nowrap;
}

.sl-chat-status {
    margin-top: 8px;
    font-size: 12px;
    color: #7a6a4a;
}

@media (max-width: 640px) {
    .sl-chat {
        margin: 16px 0;
    }

    .sl-chat-form {
        flex-direction: column;
    }

    .sl-chat-send {
        width: 100%;
    }

    .sl-chat-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sl-chat-book-header {
        align-self: flex-end;
        margin-top: 6px;
    }
}
