/* 
 * footer-fix.css
 * Fix for footer text colors in light mode
 */

/* Define mono text colors for light mode */
.text-mono-primary {
  color: #E0E0E0 !important; /* Light gray - same as dark mode */
}

.text-mono-secondary {
  color: #B0B0B0 !important; /* Medium gray - same as dark mode */
}

/* Hover state */
.hover\:text-mono-primary:hover {
  color: #FFFFFF !important; /* White on hover */
}

/* Border color */
.border-primary {
  border-color: #444444 !important; /* Dark gray - same as dark mode */
}
