/* Ana Renk Paleti ve Değişkenler */
:root {
    --primary-red: #e11d48;
    --dark-red: #9f1239;
    --bg-black: #020617;
    --card-bg: #0f172a;
    --border-color: #1e293b;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-black);
    color: var(--text-main);
    letter-spacing: -0.01em;
}

/* Mesaj Balonları ve Animasyonlar */
.chat-bubble,
.bubble {
    padding: 14px 20px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
    max-width: 80%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-msg {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-bottom-right-radius: 4px;
    color: var(--text-main);
}

.ai-msg {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
    border-left: 4px solid var(--primary-red);
    border-bottom-left-radius: 4px;
    color: var(--text-main);
}

/* Scrollbar Düzenleme */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #1e293b;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ef4444;
}