﻿/* index.html dosyasındaki <style> etiketi içine */

/* Chat Balonu */
#chatbot-balonu {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--renk-ana, #007bff); /* Ana renginizi kullanır */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}

/* Chat Penceresi (Başlangıçta gizli) */
#chatbot-penceresi {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 450px;
    height: 450px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: none; /* Başlangıçta gizli */
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

#chatbot-baslik {
    background-color: #f5f5f5;
    padding: 10px 15px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

/* index.html dosyanızdaki <style> etiketi içine */

#chatbot-mesajlar {
    flex-grow: 1;
    padding: 15px;
    /* MEVCUT KODUNUZ (BU ZATEN DOĞRU) */
    overflow-y: auto !important;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* SORUNU ÇÖZECEK EK KOD */
    min-height: 0;
}

/* Mesaj stilleri */
.mesaj {
    padding: 8px 12px;
    border-radius: 15px;
    /*max-width: 80%;*/
    word-wrap: break-word;
}

    .mesaj.kullanici {
        background-color: #e1f5fe;
        align-self: flex-end; /* Kullanıcı mesajları sağa */
        border-bottom-right-radius: 5px;
    }

    .mesaj.bot {
        background-color: #f1f1f1;
        align-self: flex-start; /* Bot mesajları sola */
        border-bottom-left-radius: 5px;
    }


#chatbot-input-alani {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
}

#chatbot-input {
    flex-grow: 1;
    border: 1px solid #ccc;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}

    #chatbot-input:focus {
        border-color: #007bff;
    }

#chatbot-gonder-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #007bff;
    cursor: pointer;
    padding: 0 10px;
}



#chatbot-baslik {
    background-color: #f5f5f5;
    padding: 10px 15px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    /* Üst elemanın küçülmesini engelle */
    flex-shrink: 0;
}

#chatbot-mesajlar {
    /* ESNEK BÜYÜMEYİ VE KAYDIRMAYI ZORLUYORUZ */
    flex-grow: 1 !important;
    overflow-y: auto !important;
    min-height: 0 !important; /* EN KRİTİK KURAL */
    /* Diğer stiller (bunlar zaten doğruydu) */
    padding: 15px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#chatbot-input-alani {
    display: flex;
    border-top: 1px solid #ddd;
    padding: 10px;
    /* Alt elemanın küçülmesini engelle */
    flex-shrink: 0;
}

/* chatbot.css dosyasının EN ALTINA ekleyin */

/* --- MOBİL UYUMLULUK ---
  Ekran genişliği 600px veya daha az olduğunda (örn: telefonlar)
  bu stiller devreye girecek.
*/
@media (max-width: 600px) {

    #chatbot-balonu {
        bottom: 80px;
    }   

    /* Chat penceresini tam ekran yap */
    #chatbot-penceresi {
        width: 80% !important; /* Tam genişlik */
        height: 50% !important; /* Tam yükseklik */
        bottom: 80px; /* Alttan sıfırla */
        right: 10px !important; /* Sağdan sıfırla */
        border-radius: 0 !important; /* Köşeleri düz yap */
        /* 'display: flex' (previous context) zaten JS tarafından yönetiliyor */
    }

    /* Başlık alanını mobil ekrana uyarlayarak biraz küçült */
    #chatbot-baslik {
        padding: 12px 15px;
        flex-shrink: 0;
    }

    /* Input alanını mobil ekrana uyarlayarak biraz küçült */
    #chatbot-input-alani {
        padding: 8px 10px;
        flex-shrink: 0;
    }

    /* Input'un içini küçült */
    #chatbot-input {
        padding: 6px 15px;
    }

    /* Chat balonunu, pencere açıkken gizle */
    /* (JavaScript'te 'display: flex' eklendiğinde bu kural çalışır) */
    #chatbot-penceresi[style*="flex"] ~ #chatbot-balonu {
        display: none !important;
    }
}

