/* ============================================================================
   RSL Color Utility Classes
   ============================================================================
   Basic color utility classes for text styling.

   Usage:
   <span class="success">Success text</span>
   <span class="danger">Error text</span>
   <span class="info">Info text</span>
   <span class="warning">Warning text</span>
   ============================================================================ */

/* ──────────────────────────────────────────────
   Semantic Color Classes
   ────────────────────────────────────────────── */

.success {
    color: #28a745;
}

.danger {
    color: #dc3545;
}

.info {
    color: #17a2b8;
}

.warning {
    color: #ffc107;
}
