button[type=submit] {
  background: #5ca6b8;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  margin: 20px;
}


button[type=submit]:hover {
  background: #6e9fc0;
}

.choose-file-button {
  background: #5ca6b8;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  margin: 20px;
}

.choose-file-button:hover {
  background: #6e9fc0;
}

#apply-button {
  background-color: green;
  margin-left: 0;
}

#apply-button:hover {
  background-color: rgb(40, 179, 40);
}


/* career concise button styles */
.row{
    margin: 0 5px 0 5px;
}
.job-heading-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.job-heading-container h4 {
  align-self: flex-start;
  padding-top: 10px;
}

.job-heading-container button {
  align-self: flex-end;
}

.hide {
  display: none;
}

/* career concise button styles end */

/* style for search bar */
.search-input-holder {
  /* width: 80vw; */
  margin: 0 0 20px 0;
  padding: 20px 0 20px 0;

}

.search-input-holder input {
  width: 80%;
}
/* card expand animation  */
.job-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height .7s ease-in-out;
}

.job-description.expand {
  max-height: 2000px;
}
/* ---------------------- */

/* tilting the card 3d effect */
.member {
  /* background-color: rgb(122, 205, 94) !important; */
  border-radius: 10px;
  /* transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(30deg) rotateY(0deg) rotateZ(0deg); */
}


/* style for search bar */
.search-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

#search-button {
    background-color: green;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 25px;
    cursor: pointer;
    z-index: 1;
     transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#search-button:hover {
    background-color: darkgreen;
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#search-button.active {
    background-color: rgb(218, 39, 39);
}

#search-button.active:hover {
    background-color: rgb(161, 12, 12);
}

#search-icon {
    transition: transform 0.3s ease-in-out;
}

#search-input {
    width: 0;
    /* margin-left: -10px; */
    overflow: hidden;
    border: none;
    padding: 8px 8px 8px 0;
    transition: width 0.3s ease-in-out;
    background-color: rgb(126, 202, 119);
    border-radius: 10px;
    outline: none; /* Remove default black outline */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
#search-input-holder {
    width: 0;
    margin-left: -20px;
    overflow: hidden;
    border: none;
    padding: 8px 8px 8px 0;
    transition: width 0.3s ease-in-out;
    background-color: rgb(126, 202, 119);
    border-radius: 10px;
}

#search-input.expand-search {
    width: 200px;
    padding: 8px 15px 8px 50px;
}
#search-input-holder.expand-search {
    width: 210px;
}

