#alchat-chat {
    background: #2176FF; /* Mavi arka plan */
    border-radius: 16px;
    box-shadow: 0 3px 18px rgba(40,60,180,0.12);
    max-width: 720px;
    padding: 16px;
    margin: 24px auto;
    display: flex;
    flex-direction: column;
    color: #ffffff; /* Tüm metinler beyaz */
}

#chat-output {
    height: 320px;
    background: #e0e0e0; /* Gri arka plan */
    border-radius: 6px;
    padding: 14px;
    margin-bottom: 16px;
    overflow-y: auto; /* Kaydırma çubuğu */
    display: flex;
    flex-direction: column-reverse; /* Alttan yukarı akış */
}

.message-container {
    margin-bottom: 10px;
}

.user-message, .bot-message {
    margin: 5px 0;
    padding: 10px;
    border-radius: 6px;
    max-width: 70%;
    word-wrap: break-word;
    color: #000000; /* Siyah metin */
}

.user-message {
    background: #0073aa;
    margin-left: auto;
    text-align: right;
}

.bot-message {
    background: #f0f0f0;
    margin-right: auto;
    text-align: left;
}

#alchat-chat-form {
    display: flex;
    gap: 12px;
}

#chat-input {
    flex: 1;
    border-radius: 7px;
    border: 1px solid #dbeafe;
    padding: 10px 12px;
    font-size: 15px;
    color: #ffffff; /* Beyaz */
    background: #333; /* Kontrast için koyu */
}

button[type="submit"] {
    background: #228be6;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 9px 24px;
    cursor: pointer;
    font-size: 15px;
}

button[type="submit"]:hover {
    background: #1c6dc1;
}

#alchat-faq-modal {
    display: none;
}

#alchat-faq-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    max-height: 70vh;
    overflow-y: auto;
    color: #000000;
}

#alchat-close-faq {
    float: right;
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    cursor: pointer;
}

#alchat-faq-list ul {
    list-style: none;
    padding: 0;
}

#alchat-faq-list li {
    margin-bottom: 8px;
}

.faq-link {
    background: #e6e6e6;
    color: #333;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.faq-link:hover {
    background: #e0eafe;
    color: #0056b3;
}

p, strong {
    color: #ffffff; /* Tüm metinler beyaz */
}