.App {
    text-align: center;
    width: 20rem;
    height: 27rem;
    background-color: #ffffff;
    padding: 20px;
    position: relative;
    overflow-y: auto;
  }

  body {
    margin: 0px;
  }

  .logo {
    height: 20vmin;
    margin-top: 4rem;
    pointer-events: none;
  }

#closeButton {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}


  .App-header {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: calc(10px + 2vmin);
    color: rgb(0, 0, 0);
  }
  
  .App-link {
    color: #61dafb;
  }

  
  .border-gradient {
    --angle: 0deg;
    border: 10px solid;
    border-radius: 5px;
    border-image: linear-gradient(var(--angle), #12c2e9, #c471ed, #f64f59) 1;
    animation: 5s rotate linear infinite;
  }


  @keyframes rotate {
    to {
      --angle: 360deg;
    }
  }
  
  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }


  /* Main Page */

  .logo-nav {
    height: 3rem;
  }

  .nav {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem;
    border-bottom: 1px solid white;
  }

  .nav .buttons {
    display: flex;
    width: 7rem;
    justify-content: space-around;
    margin-top: 6.5px;
    /* background-color: red; */
  }

  .nav .buttons button, .nav .back-button {
    color: white;
    border: 1.5px solid white;
    border-radius: 4px;
    height: 2.4rem;
    width: 2.4rem;
    font-size: 15px;
    background: transparent;
    padding: 5px;
  }

  #main .table {
    width: 100%;
    color: rgb(0, 0, 0);
    text-align: left;
    margin-top: 10px;
    font-size: 14px !important;
  }


  #main .table-cell {
    display: flex;
    padding: 5px;
    margin-left: 15px;
    font-size: 15px;
  }

  #main .none-palette {
    color: rgb(0, 0, 0);
    font-size: 20px;
    margin-top: 7.7rem;
  }

 
  button {
    cursor: pointer;
    border: none;
    font-weight: 600;
  }

  
  .btn {
    padding: 0.8rem 1.4rem;
    font-weight: 700;
    background-color: #212328;
    color: white;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
    transition: 0.4s;
  }

  .btn:hover {
    background-color: #000000;
  }

  
 