/* Conditional Messages – Frontend Styles */

.mfs-conditional-message {
    padding: 12px 16px;
    margin: 10px 0;
    border-radius: 4px;
    border-left: 4px solid transparent;
    font-size: 14px;
    line-height: 1.5;
}

.mfs-cm-content {
    display: block;
}

/* Info – blue */
.mfs-cm-info {
    background-color: #e7f3fe;
    color: #31708f;
    border-left-color: #2196F3;
}

/* Warning – amber */
.mfs-cm-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

/* Success – green */
.mfs-cm-success {
    background-color: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

/* Error – red */
.mfs-cm-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

/* Neutral – gray */
.mfs-cm-neutral {
    background-color: #f0f0f0;
    color: #333;
    border-left-color: #999;
}

/* Custom – base for inline-styled messages */
.mfs-cm-custom {
    border-left-style: solid;
    border-left-width: 4px;
}
