* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  body {
    font-family: Arial, Helvetica, sans-serif;
    background-color:rgb(186,184,108);
    text-align: center;
  }
  h1, h2 {
    color: rgb(0, 0, 0);
    font-family: serif;
  }
  table {
    width: 100%;
    border-collapse: separate;
    border-spacing: .3;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }
  .table-responsive {
    background-color:rgb(186,184,108);
    border-radius: 5px;
  }
  td {
    padding: 8px;
    color: rgb(87, 87, 87);
    text-align: center;
    background: rgb(255,251,241);
    font-weight: bold;
  }
  th {
    background-color: rgb(63,63,63);
    padding: 10px;
    color: rgb(255, 255, 255);
    background: linear-gradient(180deg,rgb(37,37,12),rgb(66,65,33));
  }
  .toggleButton {
    padding: 7px;
    height: 35px;
    width: 100px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #9d9e9e;
    color: rgb(255, 255, 255);
  }
  .result {
    margin-top: 20px;
  }
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 28px;
    margin-top: 10px;
  }
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0;
    right: 0; bottom: 0;
    background-color: rgb(233, 230, 151);
    transition: .4s;
    border-radius: 34px;
  }
  .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: rgb(95,92,5);
    transition: .4s;
    border-radius: 50%;
  }
  input:checked + .slider {
    background-color:rgb(233,230,151);
  }
  input:checked + .slider:before {
    transform: translateX(32px);
  }
  #dateTime {
    font-size: 16px;
  }
  .copyButton {
    padding: 7px;
    height: 35px;
    width: 100px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: rgb(233, 230, 151);
    color: rgb(95,92,5);
    font-weight: bold;
    margin-bottom: 20px;
  }
  .copyButton:active {
    background-color:rgb(80, 78, 28);
    color:rgb(233, 230, 151) ;
  }