/* Nachrichten / Chat-Stile */

.messages-container {
    max-height: 100px;
    overflow-y: auto;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.message-bubble {
    width: fit-content;
    max-width: 85%;
    line-height: 1.4;
    padding: 4px 10px;
    border-radius: 15px;
    word-wrap: break-word;
    white-space: normal;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.message-sent {
    background-color: #007bff;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.message-received {
    background-color: #e9ecef;
    color: #212529;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.message-content {
    font-size: 0.9em;
    margin: 0;
}

.message-timestamp {
    font-size: 0.7em;
    text-align: right;
    opacity: 0.8;
    margin: 0;
}

.message-input-area {
    display: flex;
    margin-top: 10px;
    gap: 8px;
}

.message-input-area textarea {
    flex-grow: 1;
    min-height: 40px;
    resize: vertical;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
}

.no-messages {
    color: #6c757d;
    text-align: center;
    font-style: italic;
    padding: 20px 0;
}
