﻿/* -------------------------------
   TEXT COLORS (on white background)
---------------------------------- */
.text-lime-green {
    color: #7fb428 !important; /* Contrast-safe adjusted */
}

.text-turquoise {
    color: #269ba5 !important;
}

.text-gray {
    color: #808285 !important;
}

.text-purple {
    color: #662d91 !important;
}

/* -------------------------------
   BACKGROUND COLORS (with dark or white text as needed)
---------------------------------- */
.bg-lime-green {
    background-color: #9dcb36 !important;
    color: #212529 !important; /* Dark text for readability */
}

.bg-turquoise {
    background-color: #34bdc6 !important;
    color: #212529 !important;
}

.bg-gray {
    background-color: #808285 !important;
    color: #ffffff !important;
}

.bg-purple {
    background-color: #662d91 !important;
    color: #ffffff !important; /* White text for contrast */
}

/* -------------------------------
   Optional: Border Utilities
---------------------------------- */
.border-lime-green {
    border: 1px solid #7fb428 !important;
}

.border-turquoise {
    border: 1px solid #269ba5 !important;
}

.border-gray {
    border: 1px solid #808285 !important;
}

.border-purple {
    border: 1px solid #662d91 !important;
}
