


.modal {
  display: block !important;
  position: relative !important;
  left: 38% !important;
  background: white !important;
  width: 22% !important;
  top: 24% !important;
  margin: 20px 0px;
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.close-button {
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

.close-button:hover {
  color: #000;
}

form {
  margin-top: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

Select.dropdown,
textarea,
.file-input {
  width: 90%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

textarea {
  resize: vertical;
  min-height: 50px;
}

.submit-button {
  width: 100%;
  padding: 12px;
  background-color: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #218838;
}

@media screen and (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-height: 85vh;
  }
  .modal {
    left: 9% !important;
}
}

/* ITS CSS FOR IPAD AIR */
@media only screen and (max-width: 1024px) and (min-width: 600px){
  .modal {
    left: 25% !important;
}
}

/* Sir Laptop Css Start */
@media (min-width: 1900px){
  .modal-content {
    background-color: white;
    padding: 17px;
    border-radius: 10px;
    width: 539px !important;
    text-align: center;
    height: 85vh;
    font-size: 29px;
}
}
