.chat-message-row {
    display: flex;
    margin-bottom: 12px;
}

.chat-message-row.is-self {
    justify-content: flex-start;
}

.chat-message-row.is-other {
    justify-content: flex-start;
}

.chat-message-bubble {
    max-width: 100%;
    padding: 5px 8px;
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    color: #ffffff;
}

.chat-message-row.is-self .chat-message-bubble {
    background: #fff4cc24;
    border: 0;
}

.chat-message-row.is-other .chat-message-bubble {
    background: #ffc10724;
    border: 0;
}

.chat-message-name {
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 0px;
}

.chat-message-row.is-self .chat-message-name {
    color: #f37373;
}

.chat-message-row.is-other .chat-message-name {
    color: #ff9a00;
}

.chat-message-text {
    font-size: 13px;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
}

.chat-empty-state {
    padding: 16px 12px;
    text-align: center;
    color: #b9b9b9;
    font-size: 14px;
    line-height: 1.5;
}

.chat-empty-state a {
    color: #ff6b6b;
    font-weight: 600;
    text-decoration: none;
}

.chat-empty-state a:hover {
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .chat-message-bubble {
        max-width: 92%;
    }
}


.disabled-chat input {
    cursor: not-allowed;
    background: #f5f5f5;
}

.disabled-chat button {
    cursor: not-allowed;
    opacity: 0.6;
}