/* Custom styles for CT Blox Training Platform */

/* This file has been refactored. Styles have been moved to structured CSS files:
 * - /assets/css/main.css (main stylesheet)
 * - /assets/css/components/theme.css (theme switching)
 * - /assets/css/components/forms.css (form elements)
 */

/* Add any custom overrides below this line */

/* Make quick action subtitles darker in light mode but not too dark */
.quick-action-box p {
    color: #4b5563 !important; /* Equivalent to text-gray-600, darker than original but not black */
}

/* Keep original color in dark mode */
.dark .quick-action-box p {
    color: #d1d5db !important; /* This is the equivalent of dark:text-gray-300 */
}
