/* Accordion Styles */
.accordion {
  background-color: white;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: transparent; /* Uncommented for clarity, assuming you want white background */
  overflow: hidden;
}



/* Modal Styles */
#popupForm {
  display: none; /* Hide the modal by default */
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 40%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

/* Adjust input tags */
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="password"],
.modal-content input[type="date"],
.modal-content input[type="text"] {
  width: 100%; /* Set width to 100% */
  height: 40px; /* Set height as desired */
  margin-bottom: 10px; /* Add margin to separate input fields */
}

/* Button Styles */
.submit-btn {
  background-color: #FFBC05;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, transform 0.3s;
  border-radius: 5px;
}

.submit-btn:hover, .submit-btn:focus {
  background-color: #FFBC05;
  transform: scale(1.05);
  outline: none;
}

.submit-btn:active {
  transform: scale(0.95);
}

/* Close Button */
.close-button {
  font-size: 24px;
  color: black;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


.cookie-popup {
  display: none;
  position: fixed;
  top: 50%;
  z-index: 10;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.cookie-content {
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#allowCookiesBtn {
  background-color: #FFBC05;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

#allowCookiesBtn:hover {
  background-color: #FFBC05;
}
