.welcome-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  max-width: 60vh;
}

.popup-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.popup-button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-button:hover {
  background-color: #45a049;
}

.close-welcome-popup {
  position: absolute;
  top: 1%;
  right: 2%;
  width: 25px;
  height: 25px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  outline: #fff solid 3px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .welcome-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
  }
  .popup-content {
    width: 90%;
    height: auto;
    padding: 10px;
    border-radius: 5px;
  }
  .close-welcome-popup {
    top: -3%;
    right: -3%;
  }
}

/* .close-welcome-popup:hover {
    color: #f00;
  } */

/* .welcome-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity .5s;
  }
  .welcome-popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .welcome-popup-box {
    width: 80%;
    height: auto;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #00000075;
    z-index: 1000;
    position: relative;
  }
  .close-welcome-popup {
    position: absolute;
    top: -3%;
    right: -1%;
    width: 25px;
    height: 25px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    outline: #fff solid 3px;
  }
  .close-welcome-popup:hover {
    cursor: pointer;
  }
  .welcome-popup-background {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 998;
    width: 100%;
    height: 100vh;
    background: #00000075;
  }
  .welcome-popup-img .desktop-img {
    display: block;
  }
  .welcome-popup-img .mobile-img {
    display: none;
  }
  .welcome-popup-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  @media screen and (max-width: 767px) {
    .welcome-popup-box {
      width: 90% !important;
      height: auto !important;
      padding: 10px !important;
      border-radius: 5px !important;
    }
    .close-welcome-popup {
      top: -3%;
      right: -3%;
    }
    .welcome-popup-img .desktop-img {
      display: none !important;
    }
    .welcome-popup-img .mobile-img {
      display: block !important;
    }
  } */

/* Styling for Slots Popup */
.slots-popup {
  z-index: 10001;
  font-family: 'Arial', sans-serif;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px; /* Add padding for smaller screens */
}

.slots-popup .popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%; /* Adjust width for mobile screens */
  max-width: 500px; /* Limit the maximum width */
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.slots-popup .popup-content h3 {
  font-size: 20px; /* Adjust font size for mobile */
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.slots-popup .popup-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slots-popup .popup-content ul li {
  margin-bottom: 10px;
  font-size: 14px; /* Adjust font size for mobile */
  color: #555;
}

.slots-popup .popup-content ul li strong {
  color: #333;
  font-weight: bold;
}

.slots-popup .popup-content ul li a {
  display: block; /* Make buttons stack vertically on mobile */
  font-size: 14px; /* Adjust font size for mobile */
  font-weight: 600;
  padding: 10px 15px; /* Adjust padding for smaller buttons */
  border-radius: 8px; /* Slightly smaller border radius */
  /* background-color: #007bff; */
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px; /* Add spacing between buttons */
  transition: background-color 0.3s, transform 0.3s;
}

.slots-popup .popup-content ul li a:hover {
  /* background-color: #0056b3; */
  transform: scale(1.05); /* Slight hover effect */
}

.slots-popup .close-slots-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px; /* Adjust size for mobile */
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}

.slots-popup .close-slots-popup:hover {
  color: #ff0000;
}

/* Responsive Design for Smaller Screens */
@media screen and (max-width: 767px) {
  .slots-popup .popup-content {
    width: 100%; /* Use full width for very small screens */
    padding: 15px; /* Reduce padding */
  }

  .slots-popup .popup-content h3 {
    font-size: 18px; /* Smaller heading font size */
  }

  .slots-popup .popup-content ul li a {
    font-size: 12px; /* Smaller button font size */
    padding: 8px 10px; /* Reduce button padding */
  }

  .slots-popup .close-slots-popup {
    font-size: 18px; /* Adjust close button size */
  }
}

.slots-popup.show {
  opacity: 1;
  /* transform: translate(-50%, -50%); */
}

.slots-popup .popup-content {
  text-align: center;
}

.slots-popup .popup-content h3 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.slots-popup .popup-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slots-popup .popup-content ul li {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
}

.slots-popup .popup-content ul li strong {
  color: #333;
  font-weight: bold;
}

.slots-popup .popup-content ul li a {
  /* color: #007bff; */
  text-decoration: none;
  font-weight: 500;
  /* padding: 5px 10px; */
  /* border-radius: 5px; */
  /* transition: background-color 0.3s, color 0.3s; */
}

/* .slots-popup .popup-content ul li a:hover {
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
} */

.slots-popup .close-slots-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.3s;
}

.slots-popup .close-slots-popup:hover {
  color: #ff0000;
}

.slots-popup .btn {
  /* font-size: 1.5rem; Increase font size */
  font-weight: 700; /* Make text bold */
  padding: 15px 25px; /* Add more padding for larger buttons */
  border-radius: 10px; /* Add rounded corners */
  text-transform: uppercase; /* Make text uppercase */
  background-color: #007bff; /* Default background color */
  color: #fff !important; /* White text */
  border: none; /* Remove border */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
  transition: all 0.3s ease; /* Smooth hover effect */
}

.slots-popup .btn:hover {
  background-color: #0056b3; /* Darker shade on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
}

.slots-popup .btn-primary {
  background-color: #007bff; /* Primary color */
}

.slots-popup .btn-primary:hover {
  background-color: #0056b3; /* Darker primary color on hover */
}

.slots-popup .btn-success {
  background-color: #28a745; /* Success color */
}

.slots-popup .btn-success:hover {
  background-color: #1e7e34; /* Darker success color on hover */
}

.slots-popup .btn-warning {
  background-color: #ffc107; /* Warning color */
  color: #212529; /* Dark text for contrast */
}

.slots-popup .btn-warning:hover {
  background-color: #e0a800; /* Darker warning color on hover */
}
