/* ===================================================================
   UTILITIES/COLORS.CSS
   Text and Background Color Utilities
   =================================================================== */
/* ===== 112. TEXT COLOR UTILITIES ===== */

/* ----- 112.1 Neutral Colors ----- */
.text-white {
    color: #fff !important;
}

.text-dark {
    color: #343a40 !important;
}

/* ----- 112.2 Theme Colors ----- */
.text-primary {
    color: #0088cc !important;
}

.text-secondary {
    color: #6c757d !important;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.text-warning {
    color: #ffc107 !important;
}

.text-info {
    color: #17a2b8 !important;
}

/* ===== 113. BACKGROUND COLOR UTILITIES ===== */

/* ----- 113.1 Theme Backgrounds ----- */
.bg-primary {
    background-color: #007bff !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}




/* ===== BOOTSTRAP COLOR REPLACEMENTS ===== */

/* Background Colors */
.bg-primary { background-color: #0d6efd !important; }
.bg-secondary { background-color: #6c757d !important; }
.bg-success { background-color: #198754 !important; }
.bg-danger { background-color: #dc3545 !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-info { background-color: #0dcaf0 !important; }
.bg-light { background-color: #f8f9fa !important; }
.bg-dark { background-color: #212529 !important; }
.bg-white { background-color: #fff !important; }
