#aleksiva-chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1050; /* Bootstrap modal z-index seviyesi */
    display: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

#chat-window {
    width: 350px;
    height: 460px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 16px;
    overflow: hidden;
}

.chat-bubble-user {
    background-color: #0d6efd; /* Bootstrap Primary Blue */
    color: white;
    border-radius: 16px 16px 0 16px;
    padding: 10px 14px;
    max-width: 85%;
    font-size: 0.9rem;
}

.chat-bubble-bot {
    background-color: #f8f9fa; /* Bootstrap Light */
    color: #212529; /* Bootstrap Dark */
    border-radius: 16px 16px 16px 0;
    padding: 10px 14px;
    max-width: 85%;
    font-size: 0.9rem;
    border: 1px solid #dee2e6;
}

#chat-messages {
    overflow-y: auto;
    height: 100%;
}

/* Yükleniyor Animasyonu */
.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #6c757d;
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
    margin-right: 3px;
}

    .typing-indicator span:nth-child(1) {
        animation-delay: -0.32s;
    }

    .typing-indicator span:nth-child(2) {
        animation-delay: -0.16s;
    }

@@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}
