/* --- CHAT DİZAYNI (Adi görünüş) --- */

.chat-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
}

.chat-box {
    height: 450px;
    overflow-y: auto;
    padding-right: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.chat-line {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.chat-header {
    font-weight: bold;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.chat-message {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.chat-input {
    display: flex;
    flex-direction: column;
}

.chat-input textarea {
    width: 100%;
    height: 90px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: none;
    font-size: 14px;
    margin-bottom: 10px;
}

.chat-input button {
    width: 150px;
    align-self: flex-end;
    padding: 10px;
    background: #0a2540;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.chat-input button:hover {
    background: #c5a059;
}
