/**
 * Custom styles for ticket notifications
 */

/* Override Notyf styles for ticket notifications */
.notyf .ticket-notification {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  min-width: 350px;
  padding: 20px;
  animation: slideInDown 0.3s ease-out;
}

.notyf .ticket-notification .notyf__message {
  color: white;
  font-weight: 500;
}

/* Pulse animation for emphasis */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.notyf .ticket-notification {
  animation: slideInDown 0.3s ease-out, pulse 1s ease-in-out 0.3s;
}

/* Slide in animation */
@keyframes slideInDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Make dismiss button more visible */
.notyf .ticket-notification .notyf__dismiss {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 0.2s;
}

.notyf .ticket-notification .notyf__dismiss:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .notyf .ticket-notification {
    min-width: 90vw;
    margin: 10px;
  }
}
