
.mrs-appointment-form {
    max-width: 700px;
    margin: auto;
}
.mrs-appointment-form input,
.mrs-appointment-form select,
.mrs-appointment-form textarea {
    padding: 15px;
    color: rgba(0, 0, 0, .5);
}
.mrs-appointment-form input::placeholder,
.mrs-appointment-form select::placeholder,
.mrs-appointment-form textarea::placeholder {
    color: rgba(0, 0, 0, .5);
}
.mrs-appointment-form textarea {
    width: 98%;
}

.mr-15 {
    margin-right: 15px;
}

.appointment-contact-buttons.my-10 {
    margin-block: 10px !important;
}
a.call-button.mr-15 {
    margin-right: 15px !important;
}


.mrs-appointment-form .select-wrapper {
  position: relative;
}

.mrs-appointment-form .select-wrapper select {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* কাস্টম তীর চিহ্ন */
.mrs-appointment-form .select-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: translateY(-50%) rotate(-45deg); 
  pointer-events: none;
  transition: all .3s ease;
}

