*{
    font-family: 'Poppins', sans-serif;
    /* margin: 1px; */
    padding: 3px;
}

body {
    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 99vh;
    margin: 0;
    padding: 0;
    overflow-y: overlay;
    /* font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Helvetica, Arial, sans-serif; */
    background-image: radial-gradient(circle farthest-corner at 10% 20%, #3C495A 0%, #3C495A 81.3%);
  }
  
  .container {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 15px;
    width: 80vw;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .content {
    text-align: center;
    max-height: 500px;
    margin: 10px;
    overflow-y: auto;
  }
  
  #status {
    color:#04BCA6;
    font-size: 15pt;
  }
  
  .row {
    display: flex;
    align-items: center;
  }
  
  #input {
    width: 100px;
    padding: 8px;
  }
  
  #getInput {
    padding: 10px;
    border: none;
    margin: 0 5px;
    border-radius: 5px;
    color: white;
    background-image: linear-gradient(64.5deg, #04BCA6 99%, #3C495A 1%);
    cursor: pointer;
  }
  
  table {
    width: 100%;
  }
  
  th {
    border: 1px solid #3C495A;
    padding: 5px;
    border-radius: 5px;
  }
  
  tr:not(tr:last-child) td {
    border-bottom: 1px solid #3C495A;
  }