.text-gold { color: #D4AF37 !important; }
.cinzel { font-family: 'Cinzel', serif; }
.border-gold-subtle { border-color: rgba(212, 175, 55, 0.4); }

.messenger-box {
    background: #16213e;
    border-radius: 20px;
    border: 1px solid #D4AF37;
    overflow: hidden;
    margin-top: 20px;
}

.chat-header {
    background: #1a1a2e;
    padding: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.online-indicator {
    width: 12px; height: 12px; background: #00ff00;
    border-radius: 50%; display: inline-block;
    border: 2px solid #1a1a2e; position: absolute; bottom: 0; right: 5px;
}

.ai-bubble {
    background: #252542;
    color: #e0e0e0;
    padding: 20px;
    border-radius: 20px 20px 20px 5px;
    border-left: 4px solid #D4AF37;
    font-style: italic;
    line-height: 1.8;
    min-height: 100px;
}

.chat-body {
    max-height: 500px; /* Çok uzun fallarda kutu taşmasın, scroll çıksın */
    overflow-y: auto;
    padding: 20px;
    scrollbar-width: thin;
    scrollbar-color: #D4AF37 #1a1a2e;
}

.ai-bubble {
    word-wrap: break-word; /* Uzun kelimeleri kırar */
    white-space: pre-wrap; /* Satır sonlarını ve boşlukları korur */
}

/* Placeholder (Yer Tutucu) Metin Görünürlüğü */
.form-control::placeholder {
    color: rgba(212, 175, 55, 0.6) !important; /* Altın sarısı, hafif şeffaf */
    opacity: 1; /* Firefox için gerekli */
}

/* IE ve Edge için */
.form-control:-ms-input-placeholder {
    color: rgba(212, 175, 55, 0.6) !important;
}

/* Webkit tarayıcılar (Chrome, Safari) */
.form-control::-webkit-input-placeholder {
    color: rgba(212, 175, 55, 0.6) !important;
}