#chatbot-button {
    position: fixed;
    bottom: 55px;
    right: 12px;
    padding: 10px 15px;
    background-color: #F47F01;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin-bottom: 45px;
    z-index: 99999;
    height: 50px;
    width: 50px;
}

#chatbot-form {
    position: fixed;
    bottom: 105px;
    right: 25px;
    width: 300px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 99999;
    margin-bottom: 40px;
}
.chatbot-header-img {
    background: #fe8b0042;
    border-radius: 50%;
    width: 50px;
    margin-bottom: 16px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 104px;
}
.chatbot-header-text {
    padding-bottom: 15px;
    text-align: center;
    line-height: 19px;
}

    #chatbot-form input, #chatbot-form textarea {
        width: 100%;
        padding: 8px;
        margin: 5px 0;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

#chatbot-form button {
    padding: 8px 12px;
    background-color: #F47F01;
    color: white;
    border: none;
    border-radius: 4px;
    width: 100%;
    cursor: pointer;
}
.screen1{ 
}

.screen2{
    display:none;
    width:100%;
    height:415px;
}
.from {
    background-color: #F1F1F1;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-bottom: 5px;
}

.from p{
    padding:10px;
}

.me {
    background-color: #2196F3;
    border-radius: 10px 0px 11px 10px;
    color:white;
}
    .me p {
        padding-left: 5px; 
        margin-bottom:0px!important;
    }

.sender {
    width: 81% !important;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: -11px!important;
    padding: 0px !important;
    margin: 0px;
    height:35px;
}

.send-btn {
    width: 15%;
    padding: 7px;
    font-size: 13px;
    padding: 8px;
    margin-bottom: 3px;
}
.screen2 h6 {
    font-size: 16px;
    margin-bottom: 10px;
}
.started-chat {
    text-align: center;
    font-size: 11px;
    margin-top: 8px;
    color: #262626bb;
    margin-bottom: 5px;
}
.messages {
    display: block;
    height: 320px;
    overflow: hidden auto;
}

    .messages > div {
        margin-bottom: 10px;
    }

    .messages .me {
        max-width: 80%;  
        display: block;
        margin-left: auto;
        padding: 5px 10px;
        margin-bottom:5px;
    }

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 50px;
}

    .dots span {
        animation: bounce 1s infinite ease-in-out;
    }

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

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px); /* Yüksekliği ayarlayabilirsin */
    }
}

.writing {
    width: 17%;
    background-color: #bbbbbb61;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px; 
}