/* Release Notes Notification Styles */

/* Toast Container */
.release-notes-toast {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

/* Show state with animation */
.release-notes-toast.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Hide state with animation */
.release-notes-toast.hide {
  opacity: 0 !important;
  transform: translateY(20px) !important;
}

/* Hover effect */
.release-notes-toast:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

/* Icon pulse animation */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.release-icon-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .release-notes-toast {
    min-width: calc(100vw - 2rem) !important;
    max-width: calc(100vw - 2rem) !important;
    margin: 1rem !important;
  }
}

/* Button hover effects */
.release-notes-toast .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3), 0 2px 4px -1px rgba(59, 130, 246, 0.2);
}

.release-notes-toast .btn-primary {
  transition: all 0.2s ease;
}

/* Badge animation */
.release-notes-toast .badge-light-success {
  animation: fadeIn 0.6s ease 0.3s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Close button hover effect */
.release-notes-toast .btn-icon:hover {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.release-notes-toast .btn-icon {
  transition: transform 0.3s ease;
}
