.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
  }
  
  .apply-div {
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .apply-div .edit-button{
    margin: 0 20px;
  }
  
  .apply-btn {
    width: 120px;
    height: 35px;
    border-radius: 8px;
    border: solid #ea3454 1.5px;
    background-color: #ea3454;
    color: #fff;
    font-weight: 600;
    float: right;
  }
  
  #user-image {
    width: 90px;
    height: 120px;
  }
  
  table,
  td,
  th {
    border: solid #bbb 1.32px;
    padding: none;
    border-spacing: 0;
    font-size: small;
  }
  
  table {
    width: 85%;
    border-radius: 15px;
  }
  
  td {
    padding: 10px;
    height: 25px;
  }
  
  th {
    font-weight: 500;
    padding: 10px;
    background-color: #ccc;
    text-align: start;
  }
  
  .table-left {
    width: 38%;
    font-weight: 500;
  }
  
  .big-row {
    height: 100px;
    vertical-align: text-top;
  }
  
  .button-div {
    width: 85%;
  }
  
  .edit-button {
    width: 180px;
    height: 40px;
    border-radius: 8px;
    border: solid #ea3454 1.5px;
    background-color: #ea3454;
    color: #fff;
    float: right;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
  }

  .btnfix{
    width: 180px;
    height: 40px;
    border-radius: 8px;
    border: solid #ea3454 1.5px;
    background-color: #ea3454;
    color: #fff;
    margin-top: 10px;
  }
  
  .edit-button:hover,
  .btnfix:hover,
  .apply-btn:hover {
    background-color: #cf2a49;
  }
  
  .edit-icon {
    width: 15px;
    height: auto;
  }
  
  .view-btn {
    width: 100%;
    height: 100%;
    background-color: inherit;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .view-btn:hover {
    color: teal;
  }
  
  @media (max-width: 650px) {
    table {
      width: 98%;
      overflow-x: scroll;
    }
  
    th,
    td {
      height: 50px;
      text-overflow: ellipsis;
    }
  
    .mob {
      font-size: xx-small;
      padding: 4px;
    }
  
    .button-div {
      width: 98%;
    }
  
    .edit-button {
      width: 120px;
      height: 30px;
    }
    .button-container {
      flex-direction: column;
      gap: 5px;
      justify-content: space-around;
    }
    .expandable{
      display: none;
    }
    header {
      height: 100px;
    }
  }
  