/* Chatbot styles */

#chatBotSection {

    input.form-control,
    textarea.form-control {
        margin-bottom: 0px;
    }

    .button_top {
        border: none;
        margin-top: 5px;
        background: #F66;
        color: #fff;
        font-size: 11px;
        padding: 5px 16px 2px 16px;
        text-decoration: none;
        transition: background .5s ease;
        -moz-transition: background .5s ease;
        -webkit-transition: background .5s ease;
        -o-transition: background .5s ease;
        display: inline-block;
        -webkit-border-radius: 60px;
        -moz-border-radius: 60px;
        border-radius: 60px;
        cursor: pointer;
        outline: none;
        font-weight: 700;
        text-transform: uppercase;
        -webkit-font-smoothing: antialiased;
    }



    .chat-container {
        max-width: 800px;
        margin: auto;
        margin-top: 50px;
    }

    .chat-box {
        background: #ffffff;
        border-radius: 12px;
        padding: 10px;
        #box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .message {
        display: flex;
        margin-bottom: 20px;
    }

    .message.bot {
        justify-content: flex-start;
    }

    .message.user {
        justify-content: flex-end;
        margin-left: auto;
    }

    .message .bubble {
        padding: 12px 18px;
        border-radius: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .message.bot .bubble {
        background: #f1f0f0;
        color: #333;
    }

    .message.user .bubble {
        background: #0d6efd;
        color: #fff;
    }

    #messages {
        height: 450px;
        overflow-y: auto;
        padding: 15px;
        background: #f9fbfd;
        border: 1px solid #dfe3e8;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .typing-indicator {
        font-style: italic;
        color: #6c757d;
        margin-bottom: 12px;
        font-size: 15px;
    }

    .option-tags {
        margin-top: 12px;
    }

    .option-tags button {
        margin: 6px 6px 0 0;
        font-size: 15px;
        padding: 8px 12px;
        border-radius: 6px;
        border: 1px solid #dfe3e8;
        background: #f9fbfd;
        color: #333;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
    }

    .option-tags button:hover {
        background: #0d6efd;
        color: #fff;
    }

    .nt-chatbox-body-wrap {
        max-height: 60vh;
        overflow-y: auto;
    }


    .bubble-indicator {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .bubbles {
        display: flex;
        gap: 5px;
    }

    .bubble {
        width: 10px;
        height: 10px;
        background-color: #0d6efd;
        border-radius: 50%;
        animation: bubble-blink 1.2s infinite both;
    }

    .bubble:nth-child(1) {
        animation-delay: 0s;
    }

    .bubble:nth-child(2) {
        animation-delay: 0.2s;
    }

    .bubble:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes bubble-blink {

        0%,
        100% {
            opacity: 0.3;
        }

        50% {
            opacity: 1;
        }
    }


    .nt-chat-fab {
        position: fixed;
        bottom: 32px;
        right: 32px;
        width: 60px;
        height: 60px;
        background: #0d6efd;
        color: #fff;
        border-radius: 50%;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        cursor: pointer;
        z-index: 9999;
        border: none;
        transition: background 0.2s;
    }

    .nt-chat-fab:hover {
        background: #084298;
    }

    .nt-chatbox-float {
        position: fixed;
        bottom: 100px;
        right: 32px;
        z-index: 9998;
        max-width: 370px;
        width: 100%;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
        border-radius: 16px;
        background: #fff;
        overflow: hidden;
        margin-top: 0 !important;
    }


    .swal2-container {
        z-index: 10010 !important;
    }


    .nt-chatbox-wrap {
        padding: 20px 16px 16px 16px;
        position: relative;
    }

    .nt-chatbox-close {
        position: absolute;
        top: 12px;
        right: 12px;
        font-size: 1.6rem;
        color: #888;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10;
        transition: color 0.2s;
    }

    .nt-chatbox-close:hover {
        color: #0d6efd;
    }

    .nt-btn-send {
        height: 45px;
        margin-top: 0px;
    }
    .nt-option-btn{
        text-align: left;
    }
}