/**
 * This file was automatically generated. Please run `npm run dist` to update.
 */

/**
 * SPFOD Multilingual Alerts component styles
 * Extends CivicTheme alerts with proper positioning for header display
 */
.spfod-alerts {
  position: relative;
  width: 100%;
  z-index: 1000;
}
.spfod-alerts .ct-alert {
  margin-bottom: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

/* Ensure alerts are visible when placed in header */
.ct-header {
  /* Style for different header themes */
}
.ct-header .spfod-alerts {
  display: block;
  visibility: visible;
}
.ct-header .spfod-alerts .ct-alert {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.ct-header.ct-theme-light .spfod-alerts.ct-theme-light .ct-alert {
  background-color: var(--ct-color-bg-alert-info, #e3f2fd);
  color: var(--ct-color-text-alert-info, #1976d2);
}
.ct-header.ct-theme-dark .spfod-alerts.ct-theme-dark .ct-alert {
  background-color: var(--ct-color-bg-alert-info-dark, #1e3a8a);
  color: var(--ct-color-text-alert-info-dark, #bfdbfe);
}