.left-pane-container{
  margin-top: 13px;
    float: left;
    width: 25%;
    border: 1px solid;
    max-height: 500vh;
    background-color: #f5f5f5;/* 8fcbf5 */
    color: white;
    border-radius: 18px;
}
.left-pane-heading{
    padding: 15px;
    font-weight: 500;
    text-align: center;
}

.left-pane-main{
    padding: 15px;
    color: black;
}
.left-pane-main input{
    color: black;
}

.result-container{
    float: right;
    width: 75%;
   /*  border: 1px solid rebeccapurple; */
    padding: 15px 20px;
}
.result-main{
    min-height: 100px;
}

/* for displaying expert records */
.expert-box{
    display: flex;
    padding: 30px 32px 0px 32px;
    border: 1px ridge;
    min-height: 150px;
    max-width: 150vh;
    justify-content: space-between;
}
.expert-aux{
    display: flex;
    gap: 100px;
    padding: 10px;
    padding-right: 25px;
}
.expert-btn{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.expert-text{
    padding: 10px;
    padding-right: 25px;
}
.expert-desc{
    max-width: 175vh;
}
.pagination-controls{
  display: flex;
    justify-content: center;
    align-items: center;
  margin-top: 10px;
}
#currentPage{
  margin: 0 10px;
}
/* write media at 768px width */
@media (max-width: 768px) {
  #searchExpertise{
    margin: 10px 0px;
  }
  #experience_label{
    display: block;
    width: 100%;
    padding-right: 10px;
    margin-top: 10px;
  }
  #experience_label + br {
    display: none;
  }
  .left-pane-container {
    float: left;
    width: 30%;
    max-height: none;
  }

  .result-container {
    float: right;
    width: 70%;
    padding: 10px;
  }

  .expert-box {
    flex-direction: column;
    padding: 15px;
    max-width: none;
  }

  .expert-aux {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .expert-btn {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
  }

  .expert-desc {
    max-width: none;
  }
  .left-pane-main input {
    color: black;
    max-width: -webkit-fill-available;
}
  }