/* Syria Bot Floating Container */
#syria-bot-floating {
    position: fixed !important;
    right: 20px !important;
    bottom: 20px !important;
    z-index: 999999 !important;
}


/* Chat Window */
#syria-bot-box {

    display: none;

    width: 320px;

    background: #ffffff;

    padding: 15px;

    border-radius: 12px;

    box-shadow: 0 5px 25px rgba(0,0,0,.2);

    margin-bottom: 10px;

    flex-direction: column;

}


/* Header */
.syria-bot-header {

    font-size: 18px;

    font-weight: bold;

    margin-bottom: 12px;

}


/* Welcome Message */
#syria-bot-welcome {

    background: #f4f7ff;

    padding: 12px;

    border-radius: 10px;

    margin-bottom: 12px;

    line-height: 1.8;

    font-size: 14px;

    color: #333;

}


/* Input */
#syria-bot-question {

    width: 100%;

    padding: 10px;

    box-sizing: border-box;

    border: 1px solid #ddd;

    border-radius: 8px;

}


/* Send Button */
#syria-bot-send {

    width: 100%;

    padding: 10px;

    margin-top: 10px;

    background: #124ee6;

    color: #ffffff;

    border: 0;

    border-radius: 8px;

    cursor: pointer;

}


/* Answer Area */
#syria-bot-answer {

    margin-top: 15px;

    line-height: 1.8;

}


/* Floating Button */
#syria-bot-toggle {

    width: 60px !important;

    height: 60px !important;

    min-width: 60px !important;

    min-height: 60px !important;

    padding: 0 !important;

    margin: 0 !important;

    border-radius: 50% !important;

    border: 0 !important;

    cursor: pointer !important;

    background: #124ee6 !important;

    color: #ffffff !important;

    font-size: 28px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    line-height: 1 !important;

    box-shadow: 0 4px 15px rgba(0,0,0,.3) !important;

    transition: .3s !important;

}


#syria-bot-toggle:hover {

    transform: scale(1.1);

    background: #0d3fc2 !important;

}


/* Force order */
#syria-bot-box {

    flex-direction: column !important;

}


.syria-bot-header {
    order: 1;
}


#syria-bot-welcome {
    order: 2;
}


#syria-bot-question {
    order: 3;
}


#syria-bot-send {
    order: 4;
}


#syria-bot-answer {
    order: 5;
}


/* Mobile */
@media(max-width:480px){

    #syria-bot-box{

        width:280px;

    }

}