#chat-modal-content {
    max-width: 600px;
}

#chat-list-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 15px;
}

#chat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-message-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: #ccc;
}

.chat-message-header img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.chat-message-content {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    line-height: 1.3;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#chat-modal-footer {
    border-top: 1px solid #444;
    padding-top: 15px;
    margin-top: auto;
    display: flex;
    gap: 10px;
}

