/* styles.css */
/* Styling for the popup */
.popup {
    display: block; /* Changed display to block to make it visible on page load */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup-content {
    background-color: #fff;
    width: 70%;
    max-width: 500px;
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.close {
    position: absolute;
    top: 0px;
    right: 10px;
    font-size: 25px;
    cursor: pointer;
    padding: 10px;
    color: red;
}
.popup-content h2 {
    font-size: 19px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    color: #0093dd;
    font-weight: 700;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
  }
  .form-container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
  /* Additional styles for responsiveness */
  @media (max-width: 768px) {
    .form-container {
      width: 80%;
    }
  }

/* Additional styling for the form elements can be added here */
input.form-control.popup-form {
    margin-bottom: 10px;
    height: 35px;
    font-size: 13px;
    font-weight: 500;
    padding-left: 10px;
    color: #495057;
}
select#desti {
    margin-bottom: 10px;
    height: 35px;
    font-size: 13px;
    font-weight: 500;
    padding-left: 10px;
    color: #495057;
}
select#adult {
    margin-bottom: 10px;
    height: 35px;
    font-size: 13px;
    font-weight: 500;
    padding-left: 10px;
    color: #495057;
}
button#submit\ pp-btn {
    width: auto;
    height: 35px;
    background-color: #33384d;
    border: unset;
    border-radius: 25px;
    margin-top: 10px;
}
button#submit\ pp-btn:hover {
    width: auto;
    height: 35px;
    background-color: #0093dd;
    border: unset;
    border-radius: 25px;
    margin-top: 10px;
}