html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

details summary::-webkit-details-marker {
  display: none;
}
details[open] summary {
  border-bottom: 1px solid #e2e8f0;
}
details > p,
details > div {
  animation: faqFadeIn 0.25s ease;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rickroll {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.rickroll-blink {
  animation: rickroll 1s ease-in-out 3;
  color: #f9a8d4;
  font-weight: 600;
}

.guest-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.25rem;
}
