/* ── BLOC MESSAGE BAW ── */
.message-block {
    background: var(--baw-bg);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 4px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.message-text {
    font-size: 14px;
    color: #f0f0f0;
    font-weight: 500;
    white-space: nowrap;
}
.delivery-icon {
    width: 36px;
    height: 36px;
    background: #1fce8222;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
.delivery-label {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
}
