/* Floating Toggle Button */
#zzzzchatbot-toggle {
    width: 60px;
    height: 60px;
    background: #f7dc70b6;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 99999;
}

/* Chatbox Container */
.zzzzchatbot-container {
    width: 320px;
    height: 350px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
    z-index: 999999;
}

/* Header */
.zzzzchat-header {
    background: #f7dc70b6;
    color: Black;
    padding: 12px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.zzzzclose-btn {
    cursor: pointer;
    font-size: 20px;
}

/* Chat body */
.zzzzchat-body {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

/* Messages */
.zzzzchat-message {
    margin: 5px 0;
    padding: 8px 12px;
    border-radius: 5px;
}

.zzzzbot-message {
    background: #eee;
}

.zzzzuser-message {
    background: #d0eaff;
    text-align: right;
}

/* Flexible Grid Buttons */
.zzzzoptions {
    padding: 10px;
    border-top: 1px solid #ccc;
    display: grid;

    /* FULL FLEXIBLE GRID */
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));

    gap: 8px;
}

.zzzzoptions button {
    padding: 8px 0px;
    font-size: 14px;
    border: 5px solid #f7dc70b6;
    background: #363636e8;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    width: 100%;
}

/* MOBILE RESPONSIVE */
@media (max-width: 500px) {

    #zzzzchatbot-toggle {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }

    .zzzzchatbot-container {
        width: 75%;
        height: 50%;
        bottom: 10px;
        right: 3%;
        left: 3%;
    }

    .zzzzchat-header {
        font-size: 16px;
        padding: 10px;
    }

    .zzzzoptions button {
        font-size: 11px;
        padding: 6px;
    }
}