/* ============================================
   NOTIFICATIONS (AI Toast)
   ============================================ */

.ai-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.15) 0%,
    rgba(102, 126, 234, 0.1) 100%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 1rem;
  padding: 1.25rem;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 0 16px 48px rgba(0, 212, 255, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    fadeOut 0.5s 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.ai-notification__icon {
  font-size: 2rem;
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

.ai-notification__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ai-notification__title {
  color: #00d4ff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.3px;
}

.ai-notification__message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.4;
}

.ai-notification__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.ai-notification__close:hover {
  color: #00d4ff;
}

@media (max-width: 768px) {
  .ai-notification {
    top: 80px;
    right: 10px;
    left: 10px;
    min-width: auto;
    max-width: none;
  }
}
