/* Add responsive styling to your section */
.inner_banner {
  padding: 20px;
  text-align: center;
}

.university {
  font-family: "Muli", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  background-color: #07528d; /* Optional: semi-transparent background for readability */
  border-radius: 10px;
  /* Add margin for spacing */

  width: 100%; /* Ensure full width */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  height: 80%;
}

.droplist-university-1 {
  font-family: "Arial", sans-serif;
  margin: 10px;
  font-size: 1.2rem; /* Use relative units for better scaling */
  color: white;
}

.droplist-university {
  margin: 10px;
  font-size: 1rem; /* Use relative units for better scaling */
  width: 100%;
  max-width: 300px; /* Ensure dropdown has a max-width */
}

.btn {
  margin-top: 20px;
  width: 150px;
  padding: 10px;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .droplist-university-1 {
    font-size: 1rem; /* Adjust font size for smaller screens */
  }

  .droplist-university {
    font-size: 0.9rem; /* Adjust font size for smaller screens */
    max-width: 100%; /* Ensure dropdown takes full width on small screens */
  }

  .btn {
    width: 120px; /* Adjust button width for smaller screens */
  }
}

@media (max-width: 575px) {
  .droplist-university-1 {
    font-size: 0.9rem; /* Further adjustment for very small screens */
  }

  .droplist-university {
    font-size: 0.8rem; /* Further adjustment for very small screens */
  }

  .btn {
    width: 100px; /* Further adjustment for very small screens */
  }
}
