/* static/css/message_banner.css */

.message-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    padding: 0.8rem 1rem;
    margin: 0 0 1rem 0;

    border-left: 6px solid;
    border-radius: 6px;

    font-size: 0.95rem;
    line-height: 1.4;
}

.message-banner strong {
    margin-right: .4rem;
}

.message-info {
    background: #eef6ff;
    border-color: #1976d2;
}

.message-success {
    background: #edf8ee;
    border-color: #2e7d32;
}

.message-warning {
    background: #fff8e1;
    border-color: #f9a825;
}

.message-error {
    background: #ffebee;
    border-color: #c62828;
}

.message-danger {
    background: #ffebee;
    border-color: #c62828;
}

.message-maintenance {
    background: #fff3cd;
    border-color: #ff9800;
}

.message-draft {
    background: #f3e5f5;
    border-color: #7b1fa2;
}