/* Chatbot Seikat Bungo */
#sb-chatbot-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    background: linear-gradient(135deg, #172124 0%, #f25270 100%);
    color: #2d3a2d;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(60, 120, 80, 0.12);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
}
#sb-chatbot-btn:hover {
    box-shadow: 0 8px 24px rgba(60, 120, 80, 0.18);
}
#sb-chatbot-popup {
    position: fixed;
    bottom: 100px;
    right: 32px;
    z-index: 10000;
    width: 320px;
    background: linear-gradient(135deg, #f285a2 0%, #f25270 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(60, 120, 80, 0.18);
    padding: 0 0 18px 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
    font-family: inherit;
}
#sb-chatbot-popup.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.sb-chatbot-header {
    background: linear-gradient(135deg, #172124 0%, #f25270 100%);
    border-radius: 18px 18px 0 0;
    padding: 16px 20px 8px 20px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
    box-shadow: 0 2px 8px rgba(60, 120, 80, 0.06);
}
.sb-chatbot-body {
    text-align: center;
    padding: 12px 20px 8px 20px;
    color: #fff;
    font-size: 1rem;
}
.sb-chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
}
.sb-chatbot-options button {
    background: linear-gradient(135deg, #172124 0%, #f25270 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(60, 120, 80, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.sb-chatbot-options button:hover {
    background: linear-gradient(135deg, #f25270 0%, #172124 100%);
    box-shadow: 0 4px 16px rgba(60, 120, 80, 0.14);
}
@media (max-width: 500px) {
    #sb-chatbot-popup {
        width: 52vw;
        min-width: 180px;
        max-width: 98vw;
        right: 3vw;
        bottom: 75px;
        border-radius: 8px;
        padding-bottom: 4px;
    }
    #sb-chatbot-btn {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }
    .sb-chatbot-header {
        padding: 4px 7px 2px 7px;
        font-size: 0.82rem;
        border-radius: 8px 8px 0 0;
    }
    .sb-chatbot-body {
        padding: 4px 7px 2px 7px;
        font-size: 0.78rem;
    }
    .sb-chatbot-options {
        gap: 7px;
        padding: 0 4px;
    }
    .sb-chatbot-options button {
        font-size: 0.78rem;
        padding: 5px 0;
        border-radius: 6px;
    }
}
