@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background-color: black; */
  font-family: "Roboto", sans-serif;
}

.logos-wrapper {
  display: flex;
  justify-content: space-around;
}

.guest-card-btn {
  border: none;
  color: #0a0a0a; /* Darker text for better visibility */
  background-color: #f0f8ff; /* Light background to stand out */
  border: 3px solid rgb(219, 128, 7);
  padding: 15px 60px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  font-family: "Roboto", sans-serif;
  width: 325px;
}

.guest-card-btn:hover {
  background-color: rgb(230, 115, 7);
  color: #f1f1f1;
  transform: scale(1.05);
}

.guest-card-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.get-card-img img,
.get-card-img-blue img {
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transform: scale(1);
}

.guest-card-wrapper.clicked .get-card-img-blue img {
  animation: popIn 0.4s ease forwards;
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.error-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #dc3545;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  z-index: 9999;
  display: none;
  opacity: 0;
  animation: fadeOut 3s forwards;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@keyframes neon-glow {
  0% {
    box-shadow:
      0 0 5px rgb(255, 215, 0),
      0 0 10px rgb(255, 215, 0),
      0 0 20px rgb(255, 200, 60),
      0 0 40px rgb(255, 180, 0);
  }
  50% {
    box-shadow:
      0 0 10px #ffd700,
      0 0 20px #ffcc33,
      0 0 30px #ffb700,
      0 0 50px #ffaa00;
  }
  100% {
    box-shadow:
      0 0 5px rgb(255, 215, 0),
      0 0 10px rgb(255, 215, 0),
      0 0 20px rgb(255, 200, 60),
      0 0 40px rgb(255, 180, 0);
  }
}

.neon-border {
  animation: neon-glow 2s infinite alternate;
  background-color: #f38609 !important;
  border: 3px solid #ffd700 !important;
  color: #fff !important;
  font-weight: bold;
}

.error-toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #dc3545;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  z-index: 9999;
  display: none;
  opacity: 0;
}

.error-toast.show {
  display: block;
  opacity: 1;
  animation: fadeOut 3s forwards;
  z-index: 1000;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
