/* Custom alert styles to improve contrast for accessibility */

/* * Override info alert colors for better contrast against white background */
.alert-info {
  color: #0c5460 !important; /* Dark teal text for better readability */
  background-color: #d1ecf1 !important; /* Light teal background */
  border-color: #bee5eb !important; /* Medium teal border */
}

/* * Ensure alert links have sufficient contrast */
.alert-info .alert-link {
  color: #062c33 !important; /* Even darker teal for links */
}

/* * Style alert headings for better contrast */
.alert-info .alert-heading {
  color: #0c5460 !important; /* Dark teal for headings */
}

/* * Ensure proper contrast for alert borders */
.alert-info hr {
  border-top-color: #abdde5 !important; /* Medium teal for horizontal rules */
}

