


.search-filter {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  label {
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
  }
  
  #search {
    padding: 8px 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #eee;
    width: 300px;
    margin-right: 20px;
  }
  
  #filter {
    padding: 8px 12px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    background-color: #eee;
    width: 200px;
  }
  
  #job-table {
    width: 88%;
    background-color: #fff;
    border-collapse: collapse;
    margin-top: 20px;
    border: 2px grey solid;
    
  
  }
  
  .description{
    width: 60%;
  }
  .title{
    width: 15%;
  }
  .last-date{
    width: 5%;
  }
  .container-roles{
    padding: 100px 0px;
    width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  }
  th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  
  th {
    background-color: #f5f5f5;
    font-size: 18px;
    font-weight: bold;
    color: #000;

  }
  
  tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  tbody tr:hover {
    background-color: #fafafa;
    cursor: pointer;
  }
  
  tbody td:last-child {
    text-align: center;
  }
  
  button {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background-color: #464dfe;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #8f92fc;
  }
  
  @media only screen and (max-width: 600px) {
    #search {
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px;
    }
    
    #filter {
      width: 100%;
    }
  }
  