
  /* Header styles */
  .ss-header {
    background-color: #FFFFFF;
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
  }

  .ss-header > i{
    font-size: 20px;
  }


  .banner{
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 5px;
  }

  .banner > img{
    width: 100%;
    object-fit: cover;
  }


  /* Job details styles */
  .ss-job-details {
    padding: 1rem;
  }

  .ss-job-details h1,
  .ss-job-details h2 {
    color: #141414;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
    margin: 1rem 0;
  }

  .ss-job-details p {
    color: #141414;
    font-size: 1rem;
    line-height: 1.6;
 
  }

  .ss-company-details > p {
    line-height: 2.5rem;
  }


  .sfooter{
    width: 100%;
    display: flex;
    align-items: center;
  }

  .profile{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 11px;
  }

  .profile > img{
    width: 100%;
    object-fit: cover;
  }

  .sfooter > p{
    margin-left: 8px;
  }

  .button{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
   
  }

  .button > button{
    width: 90%;
    margin: auto;
    height: 50px;
    border: none;
    background-color: #38E078;
    border-radius: 12px;
    color: black;
    font-size: 15px;
  }


  .link{
    width: 90%;
    margin: auto;
    height: 50px;
    border: none;
    background-color: #38E078;
    border-radius: 12px;
    color: black;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }

  .message-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #38E078; /* Or your preferred color */
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.message-icon i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .message-icon {
        padding: 10px;
        right: 10px;
    }

    .message-icon i {
        font-size: 20px;
    }
}
