
/* wrapper */
.wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  /* title */
  .title-container {
    height: 40px;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #606060;
    font-weight: 400;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
  }
  /* table */
  .table-container {
    border: 1px solid #e8e7e7;
    border-radius: 6px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    width: 100%;
    overflow: hidden;
  }
  table {
    border-collapse: collapse;
    width: 100%;
    border-top-left-radius: 6px;
   
  }
  /* table-border */
  tbody tr:not(:last-child) {
    border-bottom: 1px solid #e8e7e7;
  }
  tbody tr td:not(:last-child) {
    border-left: 1px solid #e8e7e7;
  }
  
  /* style tr, td, th */
  tr th {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background-color: #E78623;
  }
  button{
    background-color: #E78623;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    transition: 0.3s all ease-in-out;
  }
  button:hover{
    background-color: black;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

  }
  tr td {
    color: #606060;
    font-size: 14px;
    font-weight: 400;
  }
  th,
  td {
    padding: 16px;
    text-align: center;
  }
  /* even and odd color */
  tbody tr:nth-child(odd) {
    background-color: #fff;
  }
  tbody tr:nth-child(even) {
    background-color: #f8f8f8;
  }
  /* media query */
  @media only screen and (max-width: 600px) {
    .table-container {
      width: 303px;
      overflow-x: auto;
    }
  }
  


  /*=====search box======*/
  .col_job_filter{
    display: flex;
    margin: 30px 0px;
  
  }
  .search_box{
    width: 100%;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .search{
    height: 100%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;

  }
  .search input{
    width: 100%;
    height: 100%;
    outline: none;
    border-color: transparent;
    /* padding: 10px; */
  }


  .search span i{
    color: #E78623;
    padding: 10px;
    font-size: 18px;
  }