html {
    overflow-x: hidden;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #384B5EFF;
    margin: 0px 75px 20px 75px;
    overflow-x: hidden;
    /* max-width:fit-content; */
  }

  header {
    padding: 25px 0px 0px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: fixed; */
    top: 0;
    left: 0px;
    right: 0px;
    z-index: 100;
    /* border-bottom: 1px solid #F2F2F2; */
  }

  .logo {
    width: 175px;
    height: auto;
  }

 .header-right {
    margin-right: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .header-right a {
    color: #ffffff;
    margin: 0 10px 0 10px;
    text-decoration: none;
    font-size: 14.5px;
  }
  
  .header-right a:hover {
    color: #EB6769FF;
  }

  .header-right a:nth-child(1) {
    color: #EB6769FF; /* Replace "red" with your desired color value */
  }

  nav a {
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
  }
  
  .nav-container {
    position: relative;
    display: inline-block;
  }

  .nav-toggle {
    padding: 10px 10px;
    /* background-color: #333; */
    color: white;
    cursor: pointer;
    user-select: none;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #f9f9f9;
    min-width: 125px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
  }

  .nav-item {
    color: #333 !important;
    padding: 8px 8px;
    text-decoration: none;
    display: block;
  }

  .nav-item:hover {
    color: #EB6769FF !important;
  }

  /* Show menu on hover of either toggle or menu itself */
  .nav-container:hover .nav-menu {
    display: block;
  }

  .nav-toggle:hover {
    background-color: #EB6769FF;
    border-radius: 4px;
  }

  .profile-pic {
    width: 22.5px;
    height: 22.5px;
  }

  .text-section {
    background-color: #f9f9f9;
    padding: 10px 10px;
    margin-top: 20px;
  }
  
  .text-container {
    /* max-width: 800px; */
    margin: 0 auto;
    text-align: center;
  }
  
  .text-container h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .text-container p {
    font-size: 16px;
    color: #000;
  }
  
  .content {
    display: flex;
    margin-top: 20px;
  }
  
  aside {
    flex-basis: 20%;
    padding: 10px 0 0px 20px;
    background-color: #f9f9f9;
    position: sticky;
    top: 80px;
    height: calc(90vh - 80px);;
    overflow-y: auto;
  }
  
  .filter-options label {
    display: block;
    margin-bottom: 5px;
  }
  
  main {
    flex-basis: 80%;
    padding: 1px 0 30px 20px;
  }
  
  .job-card {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  
  .job-card .job-title {
    text-decoration: none;
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    color: #EB6769FF; /* Default color */
    transition: color 0.3s;
    font-size: 16px;
    font-weight: bold;
    width:fit-content;
  }
  
  .job-card .job-title:hover {
    color: #FFB84DFF; /* Color on hover */
  }
  
  .job-title i {
    font-size: 13px;
    margin-left: 5px; /* Adjust the spacing between the icon and the text */
  }
  
  .job-card .job-description {
  margin-top: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Limit to one line */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2em;
  max-height: 1.2em; /* Set the max height to show only one line */
  color: #BCC1CAFF;
  }
  
  .job-card [data-action="apply"] {
    align-self: flex-end;
    margin-top: 10px;
    border-radius: 5px;
    position: absolute;
    top: 10px; 
    right: 20px; 
    background-color: #EB6769FF;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
  }
  
  .job-card [data-action="apply"]:hover {
    background-color: #FFB84DFF;
  }
  
  .job-card h4 {
    margin-top: 0;
    font-size: 17px;
  }
  
  .job-card h5 {
    margin-top: 12px;
    margin-bottom: 5px;
    color: #BCC1CAFF;
  }
  
  .job-card ul {
    margin-top: 0;
    margin-bottom: 0px;
    padding-left: 20px;
    color: #BCC1CAFF;
  }
  
  .job-card ul li {
    margin-bottom: 0px;
  }
  
  .job-card p {
    margin: 0;
    padding: 0;
    color: #BCC1CAFF;
  }

  p {
    color: #BCC1CAFF;
  }

  footer {
    background-color: #44475b;
    font-size: 14px;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 0;
  }

  footer p {
    color: #ffffff;
  }