﻿/* ==========================================================================
   CUSTOM GRID UTILITY CLASSES (TAILWIND EQUIVALENT)
   ========================================================================== */

/* -----------------------------------------
   1. FONT STYLE & FONT WEIGHT
   ----------------------------------------- */
.italic {
    font-style: italic !important;
}

.not-italic {
    font-style: normal !important;
}

.font-thin {
    font-weight: 100 !important;
}

.font-extralight {
    font-weight: 200 !important;
}

.font-light {
    font-weight: 300 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-extrabold {
    font-weight: 800 !important;
}

.font-black {
    font-weight: 900 !important;
}

/* -----------------------------------------
   2. BASE COLORS
   ----------------------------------------- */
.text-inherit {
    color: inherit !important;
}

.bg-inherit {
    background-color: inherit !important;
}

.text-current {
    color: currentColor !important;
}

.bg-current {
    background-color: currentColor !important;
}

.text-transparent {
    color: transparent !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.text-black {
    color: #000000 !important;
}

.bg-black {
    background-color: #000000 !important;
}

.text-white {
    color: #ffffff !important;
}

.bg-white {
    background-color: #ffffff !important;
}

/* -----------------------------------------
   3. COLOR PALETTES
   ----------------------------------------- */

/* SLATE */
.text-slate-50 {
    color: #f8fafc !important;
}

.bg-slate-50 {
    background-color: #f8fafc !important;
}

.text-slate-100 {
    color: #f1f5f9 !important;
}

.bg-slate-100 {
    background-color: #f1f5f9 !important;
}

.text-slate-200 {
    color: #e2e8f0 !important;
}

.bg-slate-200 {
    background-color: #e2e8f0 !important;
}

.text-slate-300 {
    color: #cbd5e1 !important;
}

.bg-slate-300 {
    background-color: #cbd5e1 !important;
}

.text-slate-400 {
    color: #94a3b8 !important;
}

.bg-slate-400 {
    background-color: #94a3b8 !important;
}

.text-slate-500 {
    color: #64748b !important;
}

.bg-slate-500 {
    background-color: #64748b !important;
}

.text-slate-600 {
    color: #475569 !important;
}

.bg-slate-600 {
    background-color: #475569 !important;
}

.text-slate-700 {
    color: #334155 !important;
}

.bg-slate-700 {
    background-color: #334155 !important;
}

.text-slate-800 {
    color: #1e293b !important;
}

.bg-slate-800 {
    background-color: #1e293b !important;
}

.text-slate-900 {
    color: #0f172a !important;
}

.bg-slate-900 {
    background-color: #0f172a !important;
}

.text-slate-950 {
    color: #020617 !important;
}

.bg-slate-950 {
    background-color: #020617 !important;
}

/* GRAY */
.text-gray-50 {
    color: #f9fafb !important;
}

.bg-gray-50 {
    background-color: #f9fafb !important;
}

.text-gray-100 {
    color: #f3f4f6 !important;
}

.bg-gray-100 {
    background-color: #f3f4f6 !important;
}

.text-gray-200 {
    color: #e5e7eb !important;
}

.bg-gray-200 {
    background-color: #e5e7eb !important;
}

.text-gray-300 {
    color: #d1d5db !important;
}

.bg-gray-300 {
    background-color: #d1d5db !important;
}

.text-gray-400 {
    color: #9ca3af !important;
}

.bg-gray-400 {
    background-color: #9ca3af !important;
}

.text-gray-500 {
    color: #6b7280 !important;
}

.bg-gray-500 {
    background-color: #6b7280 !important;
}

.text-gray-600 {
    color: #4b5563 !important;
}

.bg-gray-600 {
    background-color: #4b5563 !important;
}

.text-gray-700 {
    color: #374151 !important;
}

.bg-gray-700 {
    background-color: #374151 !important;
}

.text-gray-800 {
    color: #1f2937 !important;
}

.bg-gray-800 {
    background-color: #1f2937 !important;
}

.text-gray-900 {
    color: #111827 !important;
}

.bg-gray-900 {
    background-color: #111827 !important;
}

.text-gray-950 {
    color: #030712 !important;
}

.bg-gray-950 {
    background-color: #030712 !important;
}

/* ZINC */
.text-zinc-50 {
    color: #fafafa !important;
}

.bg-zinc-50 {
    background-color: #fafafa !important;
}

.text-zinc-100 {
    color: #f4f4f5 !important;
}

.bg-zinc-100 {
    background-color: #f4f4f5 !important;
}

.text-zinc-200 {
    color: #e4e4e7 !important;
}

.bg-zinc-200 {
    background-color: #e4e4e7 !important;
}

.text-zinc-300 {
    color: #d4d4d8 !important;
}

.bg-zinc-300 {
    background-color: #d4d4d8 !important;
}

.text-zinc-400 {
    color: #a1a1aa !important;
}

.bg-zinc-400 {
    background-color: #a1a1aa !important;
}

.text-zinc-500 {
    color: #71717a !important;
}

.bg-zinc-500 {
    background-color: #71717a !important;
}

.text-zinc-600 {
    color: #52525b !important;
}

.bg-zinc-600 {
    background-color: #52525b !important;
}

.text-zinc-700 {
    color: #3f3f46 !important;
}

.bg-zinc-700 {
    background-color: #3f3f46 !important;
}

.text-zinc-800 {
    color: #27272a !important;
}

.bg-zinc-800 {
    background-color: #27272a !important;
}

.text-zinc-900 {
    color: #18181b !important;
}

.bg-zinc-900 {
    background-color: #18181b !important;
}

.text-zinc-950 {
    color: #09090b !important;
}

.bg-zinc-950 {
    background-color: #09090b !important;
}

/* NEUTRAL */
.text-neutral-50 {
    color: #fafafa !important;
}

.bg-neutral-50 {
    background-color: #fafafa !important;
}

.text-neutral-100 {
    color: #f5f5f5 !important;
}

.bg-neutral-100 {
    background-color: #f5f5f5 !important;
}

.text-neutral-200 {
    color: #e5e5e5 !important;
}

.bg-neutral-200 {
    background-color: #e5e5e5 !important;
}

.text-neutral-300 {
    color: #d4d4d4 !important;
}

.bg-neutral-300 {
    background-color: #d4d4d4 !important;
}

.text-neutral-400 {
    color: #a3a3a3 !important;
}

.bg-neutral-400 {
    background-color: #a3a3a3 !important;
}

.text-neutral-500 {
    color: #737373 !important;
}

.bg-neutral-500 {
    background-color: #737373 !important;
}

.text-neutral-600 {
    color: #525252 !important;
}

.bg-neutral-600 {
    background-color: #525252 !important;
}

.text-neutral-700 {
    color: #404040 !important;
}

.bg-neutral-700 {
    background-color: #404040 !important;
}

.text-neutral-800 {
    color: #262626 !important;
}

.bg-neutral-800 {
    background-color: #262626 !important;
}

.text-neutral-900 {
    color: #171717 !important;
}

.bg-neutral-900 {
    background-color: #171717 !important;
}

.text-neutral-950 {
    color: #0a0a0a !important;
}

.bg-neutral-950 {
    background-color: #0a0a0a !important;
}

/* STONE */
.text-stone-50 {
    color: #fafaf9 !important;
}

.bg-stone-50 {
    background-color: #fafaf9 !important;
}

.text-stone-100 {
    color: #f5f5f4 !important;
}

.bg-stone-100 {
    background-color: #f5f5f4 !important;
}

.text-stone-200 {
    color: #e7e5e4 !important;
}

.bg-stone-200 {
    background-color: #e7e5e4 !important;
}

.text-stone-300 {
    color: #d6d3d1 !important;
}

.bg-stone-300 {
    background-color: #d6d3d1 !important;
}

.text-stone-400 {
    color: #a8a29e !important;
}

.bg-stone-400 {
    background-color: #a8a29e !important;
}

.text-stone-500 {
    color: #78716c !important;
}

.bg-stone-500 {
    background-color: #78716c !important;
}

.text-stone-600 {
    color: #57534e !important;
}

.bg-stone-600 {
    background-color: #57534e !important;
}

.text-stone-700 {
    color: #44403c !important;
}

.bg-stone-700 {
    background-color: #44403c !important;
}

.text-stone-800 {
    color: #292524 !important;
}

.bg-stone-800 {
    background-color: #292524 !important;
}

.text-stone-900 {
    color: #1c1917 !important;
}

.bg-stone-900 {
    background-color: #1c1917 !important;
}

.text-stone-950 {
    color: #0c0a09 !important;
}

.bg-stone-950 {
    background-color: #0c0a09 !important;
}

/* RED */
.text-red-50 {
    color: #fef2f2 !important;
}

.bg-red-50 {
    background-color: #fef2f2 !important;
}

.text-red-100 {
    color: #fee2e2 !important;
}

.bg-red-100 {
    background-color: #fee2e2 !important;
}

.text-red-200 {
    color: #fecaca !important;
}

.bg-red-200 {
    background-color: #fecaca !important;
}

.text-red-300 {
    color: #fca5a5 !important;
}

.bg-red-300 {
    background-color: #fca5a5 !important;
}

.text-red-400 {
    color: #f87171 !important;
}

.bg-red-400 {
    background-color: #f87171 !important;
}

.text-red-500 {
    color: #ef4444 !important;
}

.bg-red-500 {
    background-color: #ef4444 !important;
}

.text-red-600 {
    color: #dc2626 !important;
}

.bg-red-600 {
    background-color: #dc2626 !important;
}

.text-red-700 {
    color: #b91c1c !important;
}

.bg-red-700 {
    background-color: #b91c1c !important;
}

.text-red-800 {
    color: #991b1b !important;
}

.bg-red-800 {
    background-color: #991b1b !important;
}

.text-red-900 {
    color: #7f1d1d !important;
}

.bg-red-900 {
    background-color: #7f1d1d !important;
}

.text-red-950 {
    color: #450a0a !important;
}

.bg-red-950 {
    background-color: #450a0a !important;
}

/* ORANGE */
.text-orange-50 {
    color: #fff7ed !important;
}

.bg-orange-50 {
    background-color: #fff7ed !important;
}

.text-orange-100 {
    color: #ffedd5 !important;
}

.bg-orange-100 {
    background-color: #ffedd5 !important;
}

.text-orange-200 {
    color: #fed7aa !important;
}

.bg-orange-200 {
    background-color: #fed7aa !important;
}

.text-orange-300 {
    color: #fdba74 !important;
}

.bg-orange-300 {
    background-color: #fdba74 !important;
}

.text-orange-400 {
    color: #fb923c !important;
}

.bg-orange-400 {
    background-color: #fb923c !important;
}

.text-orange-500 {
    color: #f97316 !important;
}

.bg-orange-500 {
    background-color: #f97316 !important;
}

.text-orange-600 {
    color: #ea580c !important;
}

.bg-orange-600 {
    background-color: #ea580c !important;
}

.text-orange-700 {
    color: #c2410c !important;
}

.bg-orange-700 {
    background-color: #c2410c !important;
}

.text-orange-800 {
    color: #9a3412 !important;
}

.bg-orange-800 {
    background-color: #9a3412 !important;
}

.text-orange-900 {
    color: #7c2d12 !important;
}

.bg-orange-900 {
    background-color: #7c2d12 !important;
}

.text-orange-950 {
    color: #431407 !important;
}

.bg-orange-950 {
    background-color: #431407 !important;
}

/* AMBER */
.text-amber-50 {
    color: #fffbeb !important;
}

.bg-amber-50 {
    background-color: #fffbeb !important;
}

.text-amber-100 {
    color: #fef3c7 !important;
}

.bg-amber-100 {
    background-color: #fef3c7 !important;
}

.text-amber-200 {
    color: #fde68a !important;
}

.bg-amber-200 {
    background-color: #fde68a !important;
}

.text-amber-300 {
    color: #fcd34d !important;
}

.bg-amber-300 {
    background-color: #fcd34d !important;
}

.text-amber-400 {
    color: #fbbf24 !important;
}

.bg-amber-400 {
    background-color: #fbbf24 !important;
}

.text-amber-500 {
    color: #f59e0b !important;
}

.bg-amber-500 {
    background-color: #f59e0b !important;
}

.text-amber-600 {
    color: #d97706 !important;
}

.bg-amber-600 {
    background-color: #d97706 !important;
}

.text-amber-700 {
    color: #b45309 !important;
}

.bg-amber-700 {
    background-color: #b45309 !important;
}

.text-amber-800 {
    color: #92400e !important;
}

.bg-amber-800 {
    background-color: #92400e !important;
}

.text-amber-900 {
    color: #78350f !important;
}

.bg-amber-900 {
    background-color: #78350f !important;
}

.text-amber-950 {
    color: #451a03 !important;
}

.bg-amber-950 {
    background-color: #451a03 !important;
}

/* YELLOW */
.text-yellow-50 {
    color: #fefce8 !important;
}

.bg-yellow-50 {
    background-color: #fefce8 !important;
}

.text-yellow-100 {
    color: #fef9c3 !important;
}

.bg-yellow-100 {
    background-color: #fef9c3 !important;
}

.text-yellow-200 {
    color: #fef08a !important;
}

.bg-yellow-200 {
    background-color: #fef08a !important;
}

.text-yellow-300 {
    color: #fde047 !important;
}

.bg-yellow-300 {
    background-color: #fde047 !important;
}

.text-yellow-400 {
    color: #facc15 !important;
}

.bg-yellow-400 {
    background-color: #facc15 !important;
}

.text-yellow-500 {
    color: #eab308 !important;
}

.bg-yellow-500 {
    background-color: #eab308 !important;
}

.text-yellow-600 {
    color: #ca8a04 !important;
}

.bg-yellow-600 {
    background-color: #ca8a04 !important;
}

.text-yellow-700 {
    color: #a16207 !important;
}

.bg-yellow-700 {
    background-color: #a16207 !important;
}

.text-yellow-800 {
    color: #854d0e !important;
}

.bg-yellow-800 {
    background-color: #854d0e !important;
}

.text-yellow-900 {
    color: #713f12 !important;
}

.bg-yellow-900 {
    background-color: #713f12 !important;
}

.text-yellow-950 {
    color: #422006 !important;
}

.bg-yellow-950 {
    background-color: #422006 !important;
}

/* LIME */
.text-lime-50 {
    color: #f7fee7 !important;
}

.bg-lime-50 {
    background-color: #f7fee7 !important;
}

.text-lime-100 {
    color: #ecfccb !important;
}

.bg-lime-100 {
    background-color: #ecfccb !important;
}

.text-lime-200 {
    color: #d9f99d !important;
}

.bg-lime-200 {
    background-color: #d9f99d !important;
}

.text-lime-300 {
    color: #bef264 !important;
}

.bg-lime-300 {
    background-color: #bef264 !important;
}

.text-lime-400 {
    color: #a3e635 !important;
}

.bg-lime-400 {
    background-color: #a3e635 !important;
}

.text-lime-500 {
    color: #84cc16 !important;
}

.bg-lime-500 {
    background-color: #84cc16 !important;
}

.text-lime-600 {
    color: #65a30d !important;
}

.bg-lime-600 {
    background-color: #65a30d !important;
}

.text-lime-700 {
    color: #4d7c0f !important;
}

.bg-lime-700 {
    background-color: #4d7c0f !important;
}

.text-lime-800 {
    color: #3f6212 !important;
}

.bg-lime-800 {
    background-color: #3f6212 !important;
}

.text-lime-900 {
    color: #365314 !important;
}

.bg-lime-900 {
    background-color: #365314 !important;
}

.text-lime-950 {
    color: #1a2e05 !important;
}

.bg-lime-950 {
    background-color: #1a2e05 !important;
}

/* GREEN */
.text-green-50 {
    color: #f0fdf4 !important;
}

.bg-green-50 {
    background-color: #f0fdf4 !important;
}

.text-green-100 {
    color: #dcfce7 !important;
}

.bg-green-100 {
    background-color: #dcfce7 !important;
}

.text-green-200 {
    color: #bbf7d0 !important;
}

.bg-green-200 {
    background-color: #bbf7d0 !important;
}

.text-green-300 {
    color: #86efac !important;
}

.bg-green-300 {
    background-color: #86efac !important;
}

.text-green-400 {
    color: #4ade80 !important;
}

.bg-green-400 {
    background-color: #4ade80 !important;
}

.text-green-500 {
    color: #22c55e !important;
}

.bg-green-500 {
    background-color: #22c55e !important;
}

.text-green-600 {
    color: #16a34a !important;
}

.bg-green-600 {
    background-color: #16a34a !important;
}

.text-green-700 {
    color: #15803d !important;
}

.bg-green-700 {
    background-color: #15803d !important;
}

.text-green-800 {
    color: #166534 !important;
}

.bg-green-800 {
    background-color: #166534 !important;
}

.text-green-900 {
    color: #14532d !important;
}

.bg-green-900 {
    background-color: #14532d !important;
}

.text-green-950 {
    color: #052e16 !important;
}

.bg-green-950 {
    background-color: #052e16 !important;
}

/* EMERALD */
.text-emerald-50 {
    color: #ecfdf5 !important;
}

.bg-emerald-50 {
    background-color: #ecfdf5 !important;
}

.text-emerald-100 {
    color: #d1fae5 !important;
}

.bg-emerald-100 {
    background-color: #d1fae5 !important;
}

.text-emerald-200 {
    color: #a7f3d0 !important;
}

.bg-emerald-200 {
    background-color: #a7f3d0 !important;
}

.text-emerald-300 {
    color: #6ee7b7 !important;
}

.bg-emerald-300 {
    background-color: #6ee7b7 !important;
}

.text-emerald-400 {
    color: #34d399 !important;
}

.bg-emerald-400 {
    background-color: #34d399 !important;
}

.text-emerald-500 {
    color: #10b981 !important;
}

.bg-emerald-500 {
    background-color: #10b981 !important;
}

.text-emerald-600 {
    color: #059669 !important;
}

.bg-emerald-600 {
    background-color: #059669 !important;
}

.text-emerald-700 {
    color: #047857 !important;
}

.bg-emerald-700 {
    background-color: #047857 !important;
}

.text-emerald-800 {
    color: #065f46 !important;
}

.bg-emerald-800 {
    background-color: #065f46 !important;
}

.text-emerald-900 {
    color: #064e3b !important;
}

.bg-emerald-900 {
    background-color: #064e3b !important;
}

.text-emerald-950 {
    color: #022c22 !important;
}

.bg-emerald-950 {
    background-color: #022c22 !important;
}

/* TEAL */
.text-teal-50 {
    color: #f0fdfa !important;
}

.bg-teal-50 {
    background-color: #f0fdfa !important;
}

.text-teal-100 {
    color: #ccfbf1 !important;
}

.bg-teal-100 {
    background-color: #ccfbf1 !important;
}

.text-teal-200 {
    color: #99f6e4 !important;
}

.bg-teal-200 {
    background-color: #99f6e4 !important;
}

.text-teal-300 {
    color: #5eead4 !important;
}

.bg-teal-300 {
    background-color: #5eead4 !important;
}

.text-teal-400 {
    color: #2dd4bf !important;
}

.bg-teal-400 {
    background-color: #2dd4bf !important;
}

.text-teal-500 {
    color: #14b8a6 !important;
}

.bg-teal-500 {
    background-color: #14b8a6 !important;
}

.text-teal-600 {
    color: #0d9488 !important;
}

.bg-teal-600 {
    background-color: #0d9488 !important;
}

.text-teal-700 {
    color: #0f766e !important;
}

.bg-teal-700 {
    background-color: #0f766e !important;
}

.text-teal-800 {
    color: #115e59 !important;
}

.bg-teal-800 {
    background-color: #115e59 !important;
}

.text-teal-900 {
    color: #134e4a !important;
}

.bg-teal-900 {
    background-color: #134e4a !important;
}

.text-teal-950 {
    color: #042f2e !important;
}

.bg-teal-950 {
    background-color: #042f2e !important;
}

/* CYAN */
.text-cyan-50 {
    color: #ecfeff !important;
}

.bg-cyan-50 {
    background-color: #ecfeff !important;
}

.text-cyan-100 {
    color: #cffafe !important;
}

.bg-cyan-100 {
    background-color: #cffafe !important;
}

.text-cyan-200 {
    color: #a5f3fc !important;
}

.bg-cyan-200 {
    background-color: #a5f3fc !important;
}

.text-cyan-300 {
    color: #67e8f9 !important;
}

.bg-cyan-300 {
    background-color: #67e8f9 !important;
}

.text-cyan-400 {
    color: #22d3ee !important;
}

.bg-cyan-400 {
    background-color: #22d3ee !important;
}

.text-cyan-500 {
    color: #06b6d4 !important;
}

.bg-cyan-500 {
    background-color: #06b6d4 !important;
}

.text-cyan-600 {
    color: #0891b2 !important;
}

.bg-cyan-600 {
    background-color: #0891b2 !important;
}

.text-cyan-700 {
    color: #0e7490 !important;
}

.bg-cyan-700 {
    background-color: #0e7490 !important;
}

.text-cyan-800 {
    color: #155e75 !important;
}

.bg-cyan-800 {
    background-color: #155e75 !important;
}

.text-cyan-900 {
    color: #164e63 !important;
}

.bg-cyan-900 {
    background-color: #164e63 !important;
}

.text-cyan-950 {
    color: #083344 !important;
}

.bg-cyan-950 {
    background-color: #083344 !important;
}

/* SKY */
.text-sky-50 {
    color: #f0f9ff !important;
}

.bg-sky-50 {
    background-color: #f0f9ff !important;
}

.text-sky-100 {
    color: #e0f2fe !important;
}

.bg-sky-100 {
    background-color: #e0f2fe !important;
}

.text-sky-200 {
    color: #bae6fd !important;
}

.bg-sky-200 {
    background-color: #bae6fd !important;
}

.text-sky-300 {
    color: #7dd3fc !important;
}

.bg-sky-300 {
    background-color: #7dd3fc !important;
}

.text-sky-400 {
    color: #38bdf8 !important;
}

.bg-sky-400 {
    background-color: #38bdf8 !important;
}

.text-sky-500 {
    color: #0ea5e9 !important;
}

.bg-sky-500 {
    background-color: #0ea5e9 !important;
}

.text-sky-600 {
    color: #0284c7 !important;
}

.bg-sky-600 {
    background-color: #0284c7 !important;
}

.text-sky-700 {
    color: #0369a1 !important;
}

.bg-sky-700 {
    background-color: #0369a1 !important;
}

.text-sky-800 {
    color: #075985 !important;
}

.bg-sky-800 {
    background-color: #075985 !important;
}

.text-sky-900 {
    color: #0c4a6e !important;
}

.bg-sky-900 {
    background-color: #0c4a6e !important;
}

.text-sky-950 {
    color: #082f49 !important;
}

.bg-sky-950 {
    background-color: #082f49 !important;
}

/* BLUE */
.text-blue-50 {
    color: #eff6ff !important;
}

.bg-blue-50 {
    background-color: #eff6ff !important;
}

.text-blue-100 {
    color: #dbeafe !important;
}

.bg-blue-100 {
    background-color: #dbeafe !important;
}

.text-blue-200 {
    color: #bfdbfe !important;
}

.bg-blue-200 {
    background-color: #bfdbfe !important;
}

.text-blue-300 {
    color: #93c5fd !important;
}

.bg-blue-300 {
    background-color: #93c5fd !important;
}

.text-blue-400 {
    color: #60a5fa !important;
}

.bg-blue-400 {
    background-color: #60a5fa !important;
}

.text-blue-500 {
    color: #3b82f6 !important;
}

.bg-blue-500 {
    background-color: #3b82f6 !important;
}

.text-blue-600 {
    color: #2563eb !important;
}

.bg-blue-600 {
    background-color: #2563eb !important;
}

.text-blue-700 {
    color: #1d4ed8 !important;
}

.bg-blue-700 {
    background-color: #1d4ed8 !important;
}

.text-blue-800 {
    color: #1e40af !important;
}

.bg-blue-800 {
    background-color: #1e40af !important;
}

.text-blue-900 {
    color: #1e3a8a !important;
}

.bg-blue-900 {
    background-color: #1e3a8a !important;
}

.text-blue-950 {
    color: #172554 !important;
}

.bg-blue-950 {
    background-color: #172554 !important;
}

/* INDIGO */
.text-indigo-50 {
    color: #eef2ff !important;
}

.bg-indigo-50 {
    background-color: #eef2ff !important;
}

.text-indigo-100 {
    color: #e0e7ff !important;
}

.bg-indigo-100 {
    background-color: #e0e7ff !important;
}

.text-indigo-200 {
    color: #c7d2fe !important;
}

.bg-indigo-200 {
    background-color: #c7d2fe !important;
}

.text-indigo-300 {
    color: #a5b4fc !important;
}

.bg-indigo-300 {
    background-color: #a5b4fc !important;
}

.text-indigo-400 {
    color: #818cf8 !important;
}

.bg-indigo-400 {
    background-color: #818cf8 !important;
}

.text-indigo-500 {
    color: #6366f1 !important;
}

.bg-indigo-500 {
    background-color: #6366f1 !important;
}

.text-indigo-600 {
    color: #4f46e5 !important;
}

.bg-indigo-600 {
    background-color: #4f46e5 !important;
}

.text-indigo-700 {
    color: #4338ca !important;
}

.bg-indigo-700 {
    background-color: #4338ca !important;
}

.text-indigo-800 {
    color: #3730a3 !important;
}

.bg-indigo-800 {
    background-color: #3730a3 !important;
}

.text-indigo-900 {
    color: #312e81 !important;
}

.bg-indigo-900 {
    background-color: #312e81 !important;
}

.text-indigo-950 {
    color: #1e1b4b !important;
}

.bg-indigo-950 {
    background-color: #1e1b4b !important;
}

/* VIOLET */
.text-violet-50 {
    color: #f5f3ff !important;
}

.bg-violet-50 {
    background-color: #f5f3ff !important;
}

.text-violet-100 {
    color: #ede9fe !important;
}

.bg-violet-100 {
    background-color: #ede9fe !important;
}

.text-violet-200 {
    color: #ddd6fe !important;
}

.bg-violet-200 {
    background-color: #ddd6fe !important;
}

.text-violet-300 {
    color: #c4b5fd !important;
}

.bg-violet-300 {
    background-color: #c4b5fd !important;
}

.text-violet-400 {
    color: #a78bfa !important;
}

.bg-violet-400 {
    background-color: #a78bfa !important;
}

.text-violet-500 {
    color: #8b5cf6 !important;
}

.bg-violet-500 {
    background-color: #8b5cf6 !important;
}

.text-violet-600 {
    color: #7c3aed !important;
}

.bg-violet-600 {
    background-color: #7c3aed !important;
}

.text-violet-700 {
    color: #6d28d9 !important;
}

.bg-violet-700 {
    background-color: #6d28d9 !important;
}

.text-violet-800 {
    color: #5b21b6 !important;
}

.bg-violet-800 {
    background-color: #5b21b6 !important;
}

.text-violet-900 {
    color: #4c1d95 !important;
}

.bg-violet-900 {
    background-color: #4c1d95 !important;
}

.text-violet-950 {
    color: #2e1065 !important;
}

.bg-violet-950 {
    background-color: #2e1065 !important;
}

/* PURPLE */
.text-purple-50 {
    color: #faf5ff !important;
}

.bg-purple-50 {
    background-color: #faf5ff !important;
}

.text-purple-100 {
    color: #f3e8ff !important;
}

.bg-purple-100 {
    background-color: #f3e8ff !important;
}

.text-purple-200 {
    color: #e9d5ff !important;
}

.bg-purple-200 {
    background-color: #e9d5ff !important;
}

.text-purple-300 {
    color: #d8b4fe !important;
}

.bg-purple-300 {
    background-color: #d8b4fe !important;
}

.text-purple-400 {
    color: #c084fc !important;
}

.bg-purple-400 {
    background-color: #c084fc !important;
}

.text-purple-500 {
    color: #a855f7 !important;
}

.bg-purple-500 {
    background-color: #a855f7 !important;
}

.text-purple-600 {
    color: #9333ea !important;
}

.bg-purple-600 {
    background-color: #9333ea !important;
}

.text-purple-700 {
    color: #7e22ce !important;
}

.bg-purple-700 {
    background-color: #7e22ce !important;
}

.text-purple-800 {
    color: #6b21a8 !important;
}

.bg-purple-800 {
    background-color: #6b21a8 !important;
}

.text-purple-900 {
    color: #581c87 !important;
}

.bg-purple-900 {
    background-color: #581c87 !important;
}

.text-purple-950 {
    color: #3b0764 !important;
}

.bg-purple-950 {
    background-color: #3b0764 !important;
}

/* FUCHSIA */
.text-fuchsia-50 {
    color: #fdf4ff !important;
}

.bg-fuchsia-50 {
    background-color: #fdf4ff !important;
}

.text-fuchsia-100 {
    color: #fae8ff !important;
}

.bg-fuchsia-100 {
    background-color: #fae8ff !important;
}

.text-fuchsia-200 {
    color: #f5d0fe !important;
}

.bg-fuchsia-200 {
    background-color: #f5d0fe !important;
}

.text-fuchsia-300 {
    color: #f0abfc !important;
}

.bg-fuchsia-300 {
    background-color: #f0abfc !important;
}

.text-fuchsia-400 {
    color: #e879f9 !important;
}

.bg-fuchsia-400 {
    background-color: #e879f9 !important;
}

.text-fuchsia-500 {
    color: #d946ef !important;
}

.bg-fuchsia-500 {
    background-color: #d946ef !important;
}

.text-fuchsia-600 {
    color: #c026d3 !important;
}

.bg-fuchsia-600 {
    background-color: #c026d3 !important;
}

.text-fuchsia-700 {
    color: #a21caf !important;
}

.bg-fuchsia-700 {
    background-color: #a21caf !important;
}

.text-fuchsia-800 {
    color: #86198f !important;
}

.bg-fuchsia-800 {
    background-color: #86198f !important;
}

.text-fuchsia-900 {
    color: #701a75 !important;
}

.bg-fuchsia-900 {
    background-color: #701a75 !important;
}

.text-fuchsia-950 {
    color: #4a044e !important;
}

.bg-fuchsia-950 {
    background-color: #4a044e !important;
}

/* PINK */
.text-pink-50 {
    color: #fdf2f8 !important;
}

.bg-pink-50 {
    background-color: #fdf2f8 !important;
}

.text-pink-100 {
    color: #fce7f3 !important;
}

.bg-pink-100 {
    background-color: #fce7f3 !important;
}

.text-pink-200 {
    color: #fbcfe8 !important;
}

.bg-pink-200 {
    background-color: #fbcfe8 !important;
}

.text-pink-300 {
    color: #f9a8d4 !important;
}

.bg-pink-300 {
    background-color: #f9a8d4 !important;
}

.text-pink-400 {
    color: #f472b6 !important;
}

.bg-pink-400 {
    background-color: #f472b6 !important;
}

.text-pink-500 {
    color: #ec4899 !important;
}

.bg-pink-500 {
    background-color: #ec4899 !important;
}

.text-pink-600 {
    color: #db2777 !important;
}

.bg-pink-600 {
    background-color: #db2777 !important;
}

.text-pink-700 {
    color: #be185d !important;
}

.bg-pink-700 {
    background-color: #be185d !important;
}

.text-pink-800 {
    color: #9d174d !important;
}

.bg-pink-800 {
    background-color: #9d174d !important;
}

.text-pink-900 {
    color: #831843 !important;
}

.bg-pink-900 {
    background-color: #831843 !important;
}

.text-pink-950 {
    color: #500724 !important;
}

.bg-pink-950 {
    background-color: #500724 !important;
}

/* ROSE */
.text-rose-50 {
    color: #fff1f2 !important;
}

.bg-rose-50 {
    background-color: #fff1f2 !important;
}

.text-rose-100 {
    color: #ffe4e6 !important;
}

.bg-rose-100 {
    background-color: #ffe4e6 !important;
}

.text-rose-200 {
    color: #fecdd3 !important;
}

.bg-rose-200 {
    background-color: #fecdd3 !important;
}

.text-rose-300 {
    color: #fda4af !important;
}

.bg-rose-300 {
    background-color: #fda4af !important;
}

.text-rose-400 {
    color: #fb7185 !important;
}

.bg-rose-400 {
    background-color: #fb7185 !important;
}

.text-rose-500 {
    color: #f43f5e !important;
}

.bg-rose-500 {
    background-color: #f43f5e !important;
}

.text-rose-600 {
    color: #e11d48 !important;
}

.bg-rose-600 {
    background-color: #e11d48 !important;
}

.text-rose-700 {
    color: #be123c !important;
}

.bg-rose-700 {
    background-color: #be123c !important;
}

.text-rose-800 {
    color: #9f1239 !important;
}

.bg-rose-800 {
    background-color: #9f1239 !important;
}

.text-rose-900 {
    color: #881337 !important;
}

.bg-rose-900 {
    background-color: #881337 !important;
}

.text-rose-950 {
    color: #4c0519 !important;
}

.bg-rose-950 {
    background-color: #4c0519 !important;
}
