.opd-head{
  font-size: 4rem;
  text-align: center;
  margin: 10px 0px;
  color: #f48221;
}

.main{
  margin-top: 50px;
  width: 100%;
}


.doc-name{
  font-size: 1.7rem;
  color: #f48221;
}
.bold{
  font-weight: bold;
}

.doc-img{
  border-bottom: 4px solid blue;
}

.opd-img{
  min-height: 300px;
}
.opd-data{
  min-height: 200px;
}

/* Modal Overlay */
.appointment-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal Box */
.appointment-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* Input Styling */
.mini-form input {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.hidden {
  display: none;
}

.subm-btn {
  font-size: 1rem;
  background-color: #f48221;
  text-align: center;
  color: white;
  border: 2px solid #f48221;
  padding: 5px;
  width: 100%;
  margin: 5px;
}



/* For mobile friendly */
@media only screen and (max-width: 600px) {
  .opd-data{
    min-height: auto;
  }
  .opd-img{
    min-height: auto;
  }

}

