@font-face {
  font-family: Cairo;
  src: url("../fonts/Cairo/cairo.ttf");

}
body {
  background-color: #142427;
  font-family: Cairo;
  text-align: right;
  margin: 0px !important;
  padding: 0px !important;
  /* Updated to right alignment */
}


/* Styling the Form (Color, Padding, Shadow) */
form {
  background-color: #fff;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 60px;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  direction: rtl;
  /* Added right-to-left direction */
}

/* Styling form-control Class */
.form-control {
  text-align: right;
  /* Updated to right alignment */
  margin-bottom: 25px;
}

/* Styling form-control Label */
.form-control label {
  display: block;
  margin-bottom: 10px;

}
label {
  font-size: 25px;
  font-family: Cairo;
}
label.questionLabel {
  border-bottom: 1px solid grey !important;
}

/* Styling form-control input, select, textarea */
.form-control input,
.form-control select,
.form-control textarea {
  border: 1px solid #777;
  border-radius: 15px;
  font-family: inherit;
  padding: 10px;
  display: block;
  width: 95%;
  text-align: right;
}

.form-control input[type="radio"],
.form-control input[type="checkbox"] {
  display: inline-block;
  width: auto;
}

button {
  background-color: #09B784;
  color: white;
  border: 1px solid #fff;
  border-radius: 15px;
  font-family: inherit;
  display: block;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20px;
  padding: 10px 20px;
  text-align: center;
  cursor: pointer;
  font-size: 18px;
  /* Added center alignment */
}
@media (max-width: 768px) {

  /* Adjust font size and padding for medium-sized screens */
  .submitBtn {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {

  /* Adjust font size and padding for smaller screens */
  .submitBtn {
    font-size: 14px;
    padding: 6px 12px;
  }
}

h1 {
  color: white;
  text-align: center;
  /* Added center alignment */
}

.hidden {
  display: none;
}

.form-control input[type="radio"],
.form-control label {
  display: inline;
  margin-right: 10px;
  font-weight: normal;
}

.arrow::after {
  content: "\25BC";
  /* Downward-pointing arrow */
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.2s;
}

.open .arrow::after {
  content: "\25B2";
  /* Upward-pointing arrow */
}

.form-control {
  display: none;
}

.open .form-control {
  display: block;
}
p {
  display: none;
}
.open p {
  display: block;
}
.form-control input[type="radio"],
.form-control input[type="checkbox"] {
  display: inline-block;
  width: 15px;
}
.checkbox-container {
  display: block;
  /* flex-wrap: wrap; */
}
.checkbox-container input[type="checkbox"] {
  margin-right: 10px;
}
#map {
  height: 400px;
  width: 100%;
}

.hidden {
  display: none;
}

.checkbox-item{
  display: flex;
}
.grid-form {
  display: flex;
  justify-content: space-between;
}


.radio-container {
  text-align: center;
}

.blod {
  font-weight: bold;
}

.checkbox-container label {
    font-weight: bold;
}
.radio-container label {
    font-weight: normal;
}
 @media screen and (max-width: 768px) {
  form {
    background-color: transparent;
    max-width: 713px;
    margin: 0 auto;
    padding: 20px 15px;
    box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    direction: rtl;
}
   /* Adjust font sizes, margins, padding, etc. as needed */
   label {
     font-size: 16px;
   }

   /* Add more responsive styles for other elements */
 }

  @media screen and (max-width: 450px) {

    /* Further adjustments for even smaller screens */
    .questionForm select,
    .questionForm input[type="radio"],
    .questionLabel,
    h2 {
      font-size: 14px;
    }

    /* Adjust margins or padding as needed */
    .checkbox-container,
    .radio-container {
      margin-top: 2px;
          }
    .form-control input[type="radio"], .form-control label {
      display: inline;
      margin-right: 5px;
      font-size: 14px !important;
}
label.questionLabel {
    font-weight: bold !important;
}
label {
    font-size: 14px;
}
.form-control input[type="radio"], .form-control input[type="checkbox"] {
    display: inline-block;
    width: 10px;
}



      }