    body {
      margin: 0;
      padding: 0;
    }

    .root {
      height: 100dvh;
      width: 100dvh;
    }

    .weather-map-container {
      position: absolute;
      height: 100%;
      width: 100%;
    }


    .map-container {
      position: absolute;
      height: 100%;
      width: 100%;
    }

    .controls-container {
      position: absolute;
      bottom: 20px;
      left: 10%;
      /* transform: translateX(-50%); */
      width: 80%;
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .slider-container {
      width: 100%;
      display: flex;
      justify-content: center;
      position: relative;
    }

    #time-slider {
      width: 100%;
      /* -webkit-appearance: none;
      appearance: none;
      background: transparent; */
      position: relative;
      margin: 0;
      padding: 0;
    }

    #time-slider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 25px;
      height: 25px;
      background: #007bff;
      border-radius: 0%;
      cursor: pointer;
    }

    #time-slider::-moz-range-thumb {
      width: 25px;
      height: 25px;
      background: #007bff;
      border-radius: 50%;
      cursor: pointer;
    }

    .slider-thumb {
      position: absolute;
      bottom: 0;
      width: 60px;
      height: 30px;
      background: #007bff;
      color: #fff;
      text-align: center;
      border-radius: 0px;
      line-height: 30px;
      font-weight: bold;
      transform: translate(-50%, -100%);
      pointer-events: none;
      z-index: 1;
    }

    .button-container {
      margin-top: 10px;
      display: flex;
      gap: 10px;
    }

    .button {
      padding: 10px 20px;
      font-size: 14px;
      text-align: top;
      cursor: pointer;
      border: none;
      border-radius: 5px;
      background-color: #007bff;
      color: white;
      font-weight: bold;
      vertical-align: middle;
    }

    .button:hover {
      background-color: #0056b3;
    }
    .flash {
      font-size: 100%;
    }