* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #fff;
  }
  
  .container {
    display: flex;
    align-items: center;
    justify-content: center;
   
  }
  
  .left {
    background-color: lightgray;
    width: 15vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 3px;
    font-size: 9px;
    font-weight: 600;
    font-size: 15px;
  }
  
  .left i {
    color: darkblue;
  }
  
  .logoContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  #logo {
    height: 90px;
    width: 120px;
  }
  
  #menuBar {
    height: 30px;
    width: 20px;
  }
  
  #dashboard{
      padding: 3px 10px 3px 1px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.18);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
      border-radius: 2px;
      cursor: pointer;
  }
  
  .leftHeading {
    display: flex;
    align-items: start;
    justify-content: start;
    margin-left: 0;
    gap: 5px;
  }
  
  .leftElement {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .leftElement a {
    text-decoration: none;
    padding: 3px 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 2px;
  }
  .right {
    width: 85vw;
    height: 100vh;
    background-color: azure;
    display: flex;
    flex-direction: column;
    gap: 5px;
   font-size: 15px;
  }
  
  .loginHeader {
    display: flex;
    width: 100%;
    height: 25vh;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  }
  
  .loginHeader img {
    width: 30%;
    height: 100%;
  }
  
  .loginInformation {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 70%;
    padding: 10px;
    background-color: rgb(82, 76, 76);
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
  }
  
  .loginInformation p {
    font-size: 9px;
    font-weight: 700;
  }
  
  .loginLogo {
    display: flex;
    justify-content: space-between;
  }
  
  .loginLogo i {
    font-size: 30px;
  }
  
  .loginLogo button {
    outline: none;
    background: rgb(37, 37, 248);
    font-size: 10px;
    padding: 2px 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
  }
  
  .ApplicationStatus {
    background-color: rgb(82, 76, 76);
    padding: 5px 0 5px 5px;
    color: #fff;
    font-size: 9px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 2px;
    font-size: 15px;
  }
  
  form {
    font-size: 10px;
  }
  
  #options {
    font-size: 8px;
    width: 150px;
    padding: 2px;
    outline: none;
    border: 1px solid blue;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9px;
    empty-cells: show;
    table-layout: fixed;
  }
  
  th,
  td {
    border: 1px solid lightskyblue;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 15px;
  }
  
  th {
    background-color: #f2f2f2;
  }
  
  .inputSelection{
    font-size: 18px;
  }
  
  #options{
    height: 2.9vh;
    width: 120px;
    font-size: 15px;
  }
  
.button{
  border-radius: 25%;
  height: 45%;
  width: 55px;
  font-size: 15px;
}

  @media screen and (max-width: 768px) {
    .left {
      width: 25vw;
      font-size: 10px;
    }
  
    .right {
      width: 75vw;
    }
  
    .loginHeader img {
      width: 40%;
    }
  
    .loginInformation p {
      font-size: 11px;
    }
  
    .loginLogo i {
      font-size: 25px;
    }
  
    .loginLogo button {
      font-size: 12px;
      padding: 3px 20px;
    }
  
    .ApplicationStatus {
      font-size: 11px;
    }
  
    form {
      font-size: 12px;
    }
  
    #options {
      font-size: 10px;
    }
  
    table {
      font-size: 10px;
    }
  }
  
  /* Mobile Phones */
  @media screen and (max-width: 480px) {
    .container {
      flex-direction: column;
    }
  
    .left {
      width: 100vw;
      height: auto;
      flex-direction: row;
      overflow-x: scroll;
    }
  
    .left .logoContainer {
      flex-direction: row;
    }
  
    .leftHeading {
      flex-direction: column;
      align-items: center;
    }
  
    .right {
      width: 100vw;
      height: auto;
    }
  
    .loginHeader {
      flex-direction: column;
      height: auto;
    }
  
    .loginHeader img {
      width: 100%;
      height: auto;
    }
  
    .loginInformation {
      width: 100%;
      padding: 20px;
    }
  
    .loginInformation p {
      font-size: 14px;
    }
  
    .loginLogo i {
      font-size: 20px;
    }
  
    .loginLogo button {
      font-size: 14px;
      padding: 5px 25px;
    }
  
    .ApplicationStatus {
      font-size: 14px;
    }
  
    form {
      font-size: 14px;
    }
  
    #options {
      font-size: 12px;
      width: 100%;
    }
  
    table {
      font-size: 12px;
    }
  }