/* style.css - Sohbet Kutusu Stilleri */

#chat-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    z-index: 1000;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

#chat-header {
    background-color: #007bff; /* Sitenizin ana rengiyle değiştirebilirsiniz */
    color: white;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1em;
}

#chat-body {
    height: 400px;
    display: flex;
    flex-direction: column;
    transition: height 0.3s ease;
}

#chat-body.hidden {
    height: 0;
    padding: 0;
    overflow: hidden;
}

#chat-box {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message {
    padding: 10px 14px;
    border-radius: 18px;
    max-width: 80%;
    line-height: 1.4;
}

.chat-message.user {
    background-color: #007bff;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.bot {
    background-color: #e9e9eb;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* "Yazıyor..." animasyonu */
#loading-indicator {
    animation: bounce 1s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5px);}
    60% {transform: translateY(-3px);}
}


#chat-input-container {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
}

#user-input {
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 1em;
    outline: none;
}

#send-btn {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.2em;
    padding-bottom: 2px; /* Gönder ikonunu ortalamak için */
}

#send-btn:hover {
    background-color: #0056b3;
}