.boxes {
    width: 50vh;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr 1fr;
    /* gap: 10px; */
    background-color: #f5f5f5;
  }
  .error-message {
    color: red;
    font-size: 14px;
  }

  /* Style for input fields with errors */
  .error {
    border: 2px solid red;
  }
  .box {
    width: 15rem;
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    box-sizing: border-box;
    position: relative; /* Added */
  }

  .circle {
    width: 50px;
    height: 50px;
    /* background-color: white;
    border-radius: 50%; */
    position: absolute;
    top: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
  }
  .job-section{
    background-color: #f9f6f6;
  }
  .jobs {
    border: 1px solid #ddd;
    margin: 10px;
  }

  .job-title {
    background-color: white;
    padding: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
 .job-title .title{
    color:#095192;
    height: 0px;
    padding: 0px;
    font-weight: bold;
  }
  .job-description {
    display: none;
    padding: 10px;
    background-color: #fff;
  }

  .job-description h4{
    font-size: 16px;
    color: #000000a1;
  }

  .job-description p{
    color: rgb(136, 133, 133);
  }

  .job-title.active {
    background-color: #ddd;
  }

  .minus-icon, .plus-icon{
    color: #01D28E;
    font-size: 30px;
    font-weight: bold;
  }

  .plus-icon:before {
    content: "+";
   
  }

  .minus-icon:before {
    content: "-";
   
  }

  .apply-buttons {
    display: flex;
    align-items: center;
  }

  .apply-button {
    margin-right: 50px;
    padding: 5px 10px;
    background-color: white;
    color: #095192;
    border: none;
    cursor: pointer;
    font-weight: bold;
  }

  .details {
    margin-top: 10px;
    
  }

  .job-details{
    display: flex;
    
  }

  .detail-label {
    font-weight: bold;
    margin-right: 5px;
    /* margin-left: 5rem; */
    color: #000000a1;
  }
  .job-openings{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .job-name{
    background-color: white ;
    color: #095192;
    font-weight: bold;
    padding: 5px 0px;
    width: 12.5rem;
    text-align: center;
    border: none;
  }
  .job-names-mobile{
    background-color: white ;
    color: #095192;
    font-weight: bold;
    padding: 5px 0px;
    width: 7rem;
    text-align: center;
    border: none;
  }

  ::-webkit-file-upload-button{
    background-color: #095192;
    padding: 10px;
    border-radius: 5px;
    border: none;
    color: white;
margin-top: 2.5px;

  }

  /* mmodal */
  .btn-mmodal {
    padding: 10px 20px;
    display: block;
    margin: 25px auto 0;
    font-size: 18px;
}
.mmodal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
 .overlay {
  width: 100vw;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  background: rgba(49, 49, 49, 0.8);

}



.mmodal-content {
  position: absolute;
  top: 55%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%);
  line-height: 1.4;

  border-radius: 3px;
  width: 90%; /* Set a maximum height */
}

.close-mmodal {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 7px;
}
.no-scroll {
  overflow: hidden;
}
