/* Modal Styles */
#popupForm {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #111418;
  margin: 15% auto;
  padding: 40px;
  border-radius: 20px;
  width: 40%;
  color: #FFFFFF;
  top: -110px;
  position: relative;
  animation: fadeIn 0.5s ease-in-out;
}

.modal-content label {
  font-size: 14px;
  margin-bottom: 5px;
  display: block;
}

.modal-content input {
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
  padding: 0 10px;
  border: 1px solid #444;
  border-radius: 5px;
  color: #FFF;
}

.submit-btn {
  width: 40%;
  height: 45px;
  background-color: #FFFFFF;
  color: #111418;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}



.close-button {
  font-size: 24px;
  color: #FFF;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}


.cookie-popup {
  display: none;
  position: fixed;
  top: 50%;
  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;
}
