/*!****************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./css/src/notification.scss ***!
  \****************************************************************************************************************************************************************************/
/**
 * Site Notification Popup Styles
 * 
 * Standalone CSS for the notification popup component.
 * Uses CSS custom properties for easy theming.
 */
/* ============================================
   CSS Custom Properties (Theme Variables)
   ============================================ */
:root {
  /* Notification Colors */
  --notification-overlay: rgba(0, 0, 0, 0.8);
  --notification-bg: hsl(0, 0%, 100%);
  --notification-text: hsl(222, 47%, 11%);
  --notification-text-muted: hsl(215, 16%, 47%);
  --notification-border: hsl(214, 32%, 91%);
  /* Destructive/Alert Colors */
  --notification-destructive: hsl(0, 84%, 60%);
  --notification-destructive-foreground: hsl(0, 0%, 100%);
  --notification-destructive-light: hsl(0, 84%, 95%);
  /* Primary Button */
  --notification-primary: hsl(195, 76%, 52%);
  --notification-primary-foreground: hsl(0, 0%, 100%);
  /* Shadows */
  --notification-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --notification-btn-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.25);
}

/* Dark mode overrides */
.dark {
  --notification-bg: hsl(222, 47%, 11%);
  --notification-text: hsl(210, 40%, 98%);
  --notification-text-muted: hsl(215, 20%, 65%);
  --notification-border: hsl(217, 33%, 17%);
  --notification-destructive-light: hsl(0, 62%, 20%);
}

/* ============================================
   Notification Container
   ============================================ */
.lcc-notification {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
}

.lcc-notification.is-open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   Overlay
   ============================================ */
.lcc-notification__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--notification-overlay);
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.lcc-notification.is-open .lcc-notification__overlay {
  opacity: 1;
}

/* ============================================
   Dialog
   ============================================ */
.lcc-notification__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 28rem;
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.lcc-notification.is-open .lcc-notification__dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.lcc-notification__content {
  position: relative;
  background-color: var(--notification-bg);
  border: 1px solid var(--notification-destructive);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: var(--notification-shadow);
}

/* ============================================
   Header
   ============================================ */
.lcc-notification__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lcc-notification__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--notification-destructive-light);
  flex-shrink: 0;
}

.lcc-notification__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--notification-destructive);
}

.lcc-notification__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--notification-text);
  margin: 0;
  line-height: 1.3;
}

/* ============================================
   Body
   ============================================ */
.lcc-notification__body {
  margin-bottom: 1.5rem;
}

.lcc-notification__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--notification-text-muted);
  margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.lcc-notification__footer {
  display: flex;
  justify-content: flex-end;
}

.lcc-notification__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--notification-primary-foreground);
  background-color: var(--notification-primary);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.lcc-notification__button:hover {
  background-color: hsl(195, 76%, 45%);
}

.lcc-notification__button:active {
  transform: scale(0.98);
}

.lcc-notification__button:focus {
  outline: 2px solid var(--notification-primary);
  outline-offset: 2px;
}

/* ============================================
   Close X Button
   ============================================ */
.lcc-notification__close-x {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}

.lcc-notification__close-x:hover {
  opacity: 1;
  background-color: var(--notification-destructive-light);
}

.lcc-notification__close-x svg {
  width: 1rem;
  height: 1rem;
  color: var(--notification-text);
}

/* ============================================
   Persistent Button
   ============================================ */
.lcc-notification__persistent-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: var(--notification-destructive);
  color: var(--notification-destructive-foreground);
  border: none;
  border-radius: 9999px;
  box-shadow: var(--notification-btn-shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lcc-notification__persistent-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px -5px rgba(239, 68, 68, 0.3);
}

.lcc-notification__persistent-btn:focus {
  outline: 2px solid var(--notification-destructive);
  outline-offset: 2px;
}

.lcc-notification__persistent-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.lcc-notification__persistent-text {
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============================================
   Animation: Fade In for Persistent Button
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lcc-notification__persistent-btn.is-visible {
  display: flex;
  animation: fadeInUp 0.3s ease-out forwards;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 480px) {
  .lcc-notification__content {
    padding: 1.25rem;
  }
  .lcc-notification__title {
    font-size: 1.125rem;
  }
  .lcc-notification__text {
    font-size: 0.9375rem;
  }
  .lcc-notification__persistent-btn {
    bottom: 1rem;
    right: 1rem;
    padding: 0.625rem 0.875rem;
  }
  .lcc-notification__persistent-text {
    font-size: 0.8125rem;
  }
}
/* ============================================
   Accessibility: Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .lcc-notification,
  .lcc-notification__overlay,
  .lcc-notification__dialog,
  .lcc-notification__persistent-btn {
    transition: none;
    animation: none;
  }
}

/*# sourceMappingURL=notification.min.46db419ac2e5bf684aea.css.map*/