/* Notification Modal - Glassmorphism Design */

.notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.notification-modal {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(240, 222, 216, 0.5);
  border-radius: 16px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(180, 140, 120, 0.12);
  animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.notification-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #2D2D2D;
  line-height: 1.4;
}

.notification-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  margin: -4px -8px 0 0;
  transition: color 0.2s ease;
}

.notification-close:hover {
  color: #2D2D2D;
}

.notification-body {
  margin: 0 0 24px 0;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.notification-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.notification-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid;
}

.notification-btn-ghost {
  background: transparent;
  border-color: rgba(240, 222, 216, 0.5);
  color: #666;
}

.notification-btn-ghost:hover {
  background: rgba(240, 222, 216, 0.1);
  border-color: rgba(191, 135, 122, 0.3);
}

.notification-btn-primary {
  background: transparent;
  border-color: rgba(191, 135, 122, 0.3);
  color: #BF8984;
  font-weight: 600;
}

.notification-btn-primary:hover {
  background: rgba(191, 135, 122, 0.05);
  border-color: rgba(191, 135, 122, 0.5);
}

.notification-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  margin: 0 auto;
  width: fit-content;
}

.badge-icon {
  font-size: 14px;
}

.badge-text {
  font-size: 12px;
  font-weight: 500;
  color: #22c55e;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .notification-modal {
    background: rgba(45, 45, 45, 0.85);
    border-color: rgba(80, 80, 80, 0.5);
  }

  .notification-title,
  .notification-close:hover {
    color: #E5E5E5;
  }

  .notification-body {
    color: #B0B0B0;
  }

  .notification-btn-ghost {
    color: #B0B0B0;
  }

  .notification-btn-ghost:hover {
    background: rgba(80, 80, 80, 0.1);
  }

  .notification-btn-primary {
    color: #F0A49D;
  }
}

/* Mobile responsive */
@media (max-width: 640px) {
  .notification-modal {
    max-width: 100%;
    margin: 0 20px;
  }

  .notification-title {
    font-size: 16px;
  }

  .notification-body {
    font-size: 13px;
  }
}
