<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes flash {
    0% {
      color: red;
      transform: scale(1.3);
    }
  
    to {
      color: #fff;
      transform: scale(1);
    }
  }
  
  @keyframes fade-in-out {
    0%,
    to {
      opacity: 0;
      transform: translateY(-20px);
    }
  
    10%,
    90% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  *,
  .span,
  p {
    font-family: "Light", Arial, sans-serif;
    color: #fff;
  }
  
  .distancefromsubtitle,
  .subtitle,
  .subtitle2,
  .subtitle3,
  .title,
  .title-2,
  b {
    background: 0 0;
    border: 0;
    position: relative;
    font-family: "Bold", Arial, sans-serif;
    top: 0;
    transition: color 100ms linear;
    color: #fff;
  }
  
  .distancefromsubtitle:hover(),
  .subtitle2:hover,
  .subtitle3:hover,
  .subtitle:hover {
    cursor: pointer;
    color: #bdbdbd;
  }
  
  .distancefromsubtitle:active,
  .subtitle2:active,
  .subtitle3:active,
  .subtitle:active {
    cursor: pointer;
    color: #8d8d8d;
  }
  
  #light {
    color: #131313;
    box-shadow: none;
  }
  
  .subvalue {
    position: relative;
    font-family: "Bold", Arial, sans-serif;
    font-size: 0.9em;
    justify-content: center;
    text-align: center;
    color: #fff;
    top: 0;
  }
  
  #icon {
    width: 20px;
  }
  
  #flag-icon {
    display: contents;
    width: 20px;
    height: auto;
    border-radius: 3px;
  }
  
  #flag-icon,
  flag-icon-2 {
    vertical-align: middle;
  }
  
  #flag-icon-2 {
    width: 17px;
    height: auto;
    border-radius: 2px;
  }
  
  .subtitle,
  .value {
    margin: 0;
    padding: 0;
  }
  
  .subtitle {
    font-size: 1.1em;
  }
  
  .distancefromsubtitle,
  .subtitle2 {
    font-size: 1em;
  }
  
  .subtitle3 {
    font-size: 0.9em;
  }
  
  .value2 {
    font-size: 0.8em;
  }
  
  .settings-tab-content p,
  .value {
    font-family: "Light", Arial, sans-serif;
  }
  
  #left {
    text-align: left;
    float: left;
  }
  
  #right {
    text-align: right;
    float: right;
  }
  
  .weather-city {
    visibility: hidden;
  }
  
  .value,
  hr {
    position: relative;
  }
  
  .value {
    font-size: 0.9em;
  }
  
  .value short {
    max-width: 25%;
  }
  
  .value long {
    max-width: 75%;
    width: 75%;
  }
  
  .title {
    font-size: 1.4em;
    margin: 0;
  }
  
  .popup,
  .title,
  .title-2 {
    text-align: center;
  }
  
  .title-2 {
    font-size: 1.1em;
    margin: 0;
  }
  
  hr {
    border: 1px solid #303030;
    margin: 5px 0;
  }
  
  #map,
  #map-container {
    height: 100%;
  }
  
  #map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
  
  .popup {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 20px;
    z-index: 9999;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 100%;
    background-color: #1a1a1a;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-family: "Arial", sans-serif;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out,
      transform 300ms ease-in-out;
    transform: translate(-50%, -50%) scale(0.9);
  }
  
  .popup hr {
    border: 0;
    height: 1px;
    background-color: #303030;
    width: 95%;
    margin: 10px 0;
  }
  
  .verticalLine {
    border-left: 1px solid #303030;
    height: 125px;
  }
  
  #pure-donate-icon {
    display: none;
  }
  
  .menu,
  .menu-button button {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
  }
  
  .menu {
    justify-content: center;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 9999;
    max-width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    font-family: "Arial", sans-serif;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out,
      transform 300ms ease-in-out;
    transform: translate(-50%, -50%) scale(0.9);
  }
  
  .menu-button {
    position: relative;
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
  }
  
  .menu-button button {
    flex-direction: column;
    justify-content: flex-end;
    border: 0;
    height: 125px;
    width: 125px;
    transition: background-color 100ms linear;
    padding: 10px;
    box-sizing: border-box;
    position: relative;
  }
  
  #menu-icon {
    filter: hue-rotate(0deg) brightness(185%) contrast(0%);
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: auto;
    margin: 0;
    transition: filter 100ms linear;
  }
  
  .menu-label {
    color: #7f7f7f;
    font-size: 1.25em;
    margin-top: auto;
    transition: color 100ms linear;
  }
  
  #small {
    font-size: 1em;
    margin-top: 5px;
  }
  
  .menu-button button:hover .menu-label {
    color: #fff;
  }
  
  .menu-button button:hover #menu-icon {
    filter: hue-rotate(45deg) brightness(200%) contrast(200%);
  }
  
  .menu-button button:active .menu-label {
    color: #acacac;
  }
  
  .menu-button button:active #menu-icon {
    filter: hue-rotate(45deg) brightness(125%) contrast(0%);
  }
  
  .menu-button button:hover {
    cursor: pointer;
    background-color: #272727;
  }
  
  .menu-button button:active {
    background-color: #131313;
  }
  
  #widget-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 280px;
    display: flex;
    align-items: flex-end;
    padding: 0 10px 10px;
    box-sizing: border-box;
    transition: opacity 0.3s ease-in-out;
  }
  
  #map-controls button,
  .widget {
    height: 100%;
    color: #fff;
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
  }
  
  .widget {
    margin: 0 5px;
    flex-grow: 1;
    font-size: 1.2em;
    box-sizing: border-box;
    padding: 10px;
  }
  
  .widget1 {
    flex-basis: 20%;
    height: 100%;
  }
  
  .widget1,
  .widget2,
  .widget3,
  .widget4,
  .widget5 {
    position: relative;
    overflow: hidden !important;
    border-radius: 10px;
    background-color: #1a1a1a;
  }
  
  .widget2 {
    flex-basis: 15%;
    height: 75%;
    position: relative;
  }
  
  .widget3,
  .widget4,
  .widget5 {
    flex-basis: 30%;
    height: 85%;
  }
  
  .widget4,
  .widget5 {
    flex-basis: 15%;
    height: 75%;
  }
  
  .widget5 {
    flex-basis: 20%;
    height: 100%;
  }
  
  body,
  html {
    font-family: Arial, sans-serif;
  }
  
  .stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  
  #centre,
  .info-btn {
    justify-content: center;
  }
  
  #centre {
    display: flex;
    align-items: center;
    margin: 0;
  }
  
  .info-btn {
    background: 0 0;
    border: 0;
    cursor: pointer;
    padding-left: 5px;
    color: #6e6e6e;
    font-size: 0.55em;
    vertical-align: middle;
  }
  
  .info-btn i {
    font-size: 1.2em;
    transition: color 0.3s ease;
  }
  
  .info-btn i:hover {
    color: #d1d1d1;
  }
  
  #map-controls,
  .overlay {
    display: flex;
    flex-direction: column;
  }
  
  #map-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    gap: 5px;
  }
  
  #map-controls button {
    max-width: 40px;
    max-height: 40px;
    width: 100%;
    padding: 8px 12px;
    background-color: #3c53e8;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #map-controls button:hover {
    background-color: #8293fd;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
    z-index: 9999;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(5px);
  }
  
  .overlay a {
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .overlay .bullet,
  .overlay a {
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .overlay a:hover {
    color: #3c53e8;
  }
  
  .notice {
    margin-top: auto;
    margin-bottom: 25px;
    color: #fff;
  }
  
  .tracker-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    color: #fff;
    display: flex;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Bold", Arial, sans-serif;
    font-size: 0.95em;
    z-index: 200000;
  }
  
  .tracker-load-container {
    width: 60px;
    height: 60px;
  }
  
  #fact {
    margin-top: -10px;
  }
  
  .menu.active,
  .popup.active {
    transform: translate(-50%, -50%) scale(1);
  }
  
  .menu.active,
  .overlay.active,
  .popup.active {
    opacity: 1;
    visibility: visible;
  }
  
  .weather-content,
  .weather-stats {
    visibility: hidden;
  }
  
  #load {
    width: 20px;
    height: auto;
    margin-right: 10px;
    display: block;
    animation: spin 1s linear infinite;
  }
  
  .weather-content {
    display: flex;
    font-size: 1.1em;
    color: #fff;
  }
  
  #weather-icon {
    width: 60px;
    height: auto;
    margin-right: 5px;
  }
  
  .weather-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .weather-temp {
    font-size: 1.35em;
    font-family: "Bold", Arial, sans-serif;
  }
  
  .weather-condition {
    font-size: 0.75em;
  }
  
  .weather-city,
  .weather-condition,
  .weather-feels-like {
    font-family: "Light", Arial, sans-serif;
  }
  
  .weather-feels-like {
    color: #6e6e6e;
    display: block;
    text-align: right;
    font-size: 0.75em;
    margin-left: auto;
  }
  
  .weather-feels-like span {
    color: #6e6e6e;
    font-size: 1.2em;
  }
  
  .weather-city {
    font-size: 0.8em;
    text-align: center;
    color: #ccc;
    margin-top: 10px;
  }
  
  .weather-overlay {
    backdrop-filter: blur(5px);
  }
  
  .weather-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Bold", Arial, sans-serif;
    font-size: 0.95em;
    border-radius: 10px;
    z-index: 1;
    transition: opacity 0.5s ease;
    opacity: 1;
  }
  
  .weather-overlay.hidden {
    opacity: 0;
    z-index: -1;
  }
  
  .travel-overlay {
    backdrop-filter: blur(5px);
  }
  
  .travel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Bold", Arial, sans-serif;
    font-size: 0.95em;
    border-radius: 10px;
    z-index: 1;
    transition: opacity 0.5s ease;
    opacity: 1;
  }
  
  .travel-overlay.hidden {
    opacity: 0;
    z-index: -1;
  }
  
  @media (max-width: 768px) {
    .verticalLine {
      height: 75px;
    }
  
    .popup {
      max-height: 60% !important;
    }
  
    #unlock-map,
    #zoom-container,
    #zoom-in,
    #zoom-out {
      width: 50px !important;
    }
  
    .settings-container {
      transform: translate(-50%, -50%) scale(0.7) !important;
    }
  
    .menu.active,
    .settings-container.active {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%) scale(0.8) !important;
    }
  
    #pure-donate-icon {
      display: flex;
    }
  
    #donate-text {
      display: none;
    }
  
    .popup {
      max-width: 400px !important;
      width: 100%;
    }
  
    .menu {
      transform: translate(-50%, -50%) scale(0.7) !important;
      max-width: 130% !important;
    }
  }
  
  #mobile-nav,
  .e {
    align-items: center;
    display: flex;
    justify-content: center;
    position: fixed;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    text-align: center;
    font-family: "Arial", sans-serif;
    overflow: hidden;
    background-color: #1a1a1a;
  }
  
  #mobile-nav {
    bottom: -15px;
    height: 50px;
    z-index: 1;
    max-width: 100%;
    width: 90%;
  }
  
  .e {
    top: 50%;
    z-index: 9999;
    max-width: 80%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out,
      transform 300ms ease-in-out;
    transform: translate(-50%, -50%) scale(0.9);
  }
  
  .nav-arrow {
    font-size: 1.5em;
    width: 50%;
    transition: background-color 0.3s;
  }
  
  .nav-arrow:hover {
    background-color: #272727;
  }
  
  .nav-arrow:active {
    background-color: #131313;
  }
  
  @media (max-width: 768px) {
    #mobile-nav {
      display: flex;
    }
  
    #donate-button {
      position: fixed !important;
      width: 50px !important;
      height: 50px !important;
      top: 10px !important;
      left: 70px !important;
    }
  
    #unlock-map {
      top: 10px !important;
      width: 50px !important;
      height: 50px !important;
    }
  
    #zoom-in,
    #zoom-out,
    .zoom-control {
      display: none !important;
    }
  
    .pre-tracking-widget {
      width: calc(100% - 20px) !important;
    }
  
    .widget {
      display: none;
    }
  
    .widget3 {
      display: block;
      flex-basis: 100%;
    }
  
    .pre-tracking-widget {
      max-width: 90%;
    }
  
    #widget-container {
      position: absolute;
      bottom: 60px;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: flex-end;
      padding: 0 10px 10px;
      box-sizing: border-box;
    }
  
    html {
      zoom: 0.8; /* Scales the entire page by 150% */
    }
  
    #map,
    #map-container {
      height: 125%;
      top: -5% !important;
    }
  
    #map {
      position: absolute;
      top: -25%;
      left: 0;
      width: 125%;
    }
  }
  
  @media (min-width: 769px) {
    .widget {
      display: block;
    }
  
    #mobile-nav {
      display: none;
    }
  }
  
  .map-button button,
  .settings-container {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
  }
  
  .settings-container,
  .settings-header {
    font-family: "Light", Arial, sans-serif;
    color: #fff;
    margin: 0;
    height: auto;
  }
  
  .settings-container {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 120000;
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 0;
    max-height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out,
      transform 300ms ease-in-out;
    transform: translate(-50%, -50%) scale(0.9);
  }
  
  .settings-container.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
  
  .settings-tab-content h3,
  .weather-feels-like span,
  h2 {
    font-family: "Bold", Arial, sans-serif;
  }
  
  h2 {
    font-weight: 400;
  }
  
  .settings-header {
    background-color: #161616;
    text-align: left;
    padding: 0 0 0 20px;
    font-size: 1em;
    line-height: 0.5em;
  }
  
  .settings-content {
    display: flex;
    background-color: #1a1a1a;
    flex-grow: 1;
  }
  
  #bottom-buttons,
  .settings-sidebar {
    flex: 1;
    background-color: #1a1a1a;
    border-right: 1px solid #303030;
  }
  
  #bottom-buttons ul,
  .settings-sidebar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  #settings-tabs li,
  .settings-panel {
    font-family: "Light", Arial, sans-serif;
  }
  
  #settings-tabs li {
    padding: 12px 15px;
    font-weight: 400;
    color: #7f7f7f;
    line-height: 0.8em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  #settings-tabs li i {
    font-size: 1.2em;
    color: inherit;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
  }
  
  #settings-tabs .active {
    background-color: #222;
    color: #fff;
  }
  
  #settings-tabs .active i,
  #settings-tabs li:hover i {
    color: inherit;
  }
  
  #bottom-buttons .active li:hover,
  #bottom-buttons li:hover,
  #settings-tabs li:hover {
    background-color: #272727;
    color: #fff;
  }
  
  .settings-panel {
    flex: 3;
    padding: 20px;
    font-size: 1em;
  }
  
  .settings-tab-content {
    display: none;
    font-size: 1em;
    color: #fff;
  }
  
  .settings-tab-content.active {
    display: block;
  }
  
  .settings-tab-content h3 {
    font-size: 1.4em;
    padding-bottom: 7px;
    margin: 0;
  }
  
  .settings-tab-content p {
    color: #ccc;
  }
  
  @media (max-width: 768px) {
    .settings-content {
      flex-direction: column;
    }
  
    .settings-sidebar {
      flex-direction: row;
      width: 100%;
      border-right: none;
      border-bottom: 1px solid #303030;
      padding-bottom: 5px;
    }
  
    #settings-tabs li {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px;
      line-height: 1.5em;
      font-size: 0.9em;
    }
  
    #settings-tabs li span,
    #settings-tabs li::after {
      display: none;
    }
  
    .settings-sidebar ul {
      display: flex;
      justify-content: space-around;
      width: 100%;
      padding: 0;
    }
  
    #settings-tabs li i {
      font-size: 1em;
    }
  
    .settings-panel {
      padding: 10px;
    }
  }
  
  #bottom-buttons li,
  .reset li {
    font-family: "Light", Arial, sans-serif;
    font-weight: 400;
    color: #7f7f7f;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .reset li {
    line-height: 0.6em;
    border-radius: 8px;
  }
  
  #bottom-buttons li {
    line-height: 2.5em;
    cursor: pointer;
  }
  
  #bottom-buttons .active {
    background-color: #4e589c;
    color: #fff;
  }
  
  .settingstab-header {
    line-height: 0.5em;
  }
  
  .settingstab-header .settings-subheader,
  .settingstab-header h2 {
    margin: 0;
  }
  
  .map-select,
  .theme-select {
    display: flex;
    align-items: center;
    max-width: 80%;
    border-radius: 8px;
    font-family: "Arial", sans-serif;
  }
  
  .map-select {
    top: 50%;
    left: 50%;
    z-index: 9999;
  }
  
  .theme-select {
    justify-content: flex-start;
    margin: 0;
    padding: 8px;
    gap: 15px;
  }
  
  #equirectangular-img,
  #globe-img,
  #map-img,
  #mercator-img,
  #monochrome-img,
  #satellite-img,
  #topography-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 8px;
    width: 100%;
    height: auto;
    margin: 0;
    transition: filter 100ms linear;
  }
  
  .map-button,
  .map-theme-button {
    position: relative;
  }
  
  .map-button button {
    justify-content: flex-end;
    align-items: center;
    height: 95px;
    width: 95px;
    max-width: 95px;
    max-height: 95px;
    transition: background-color 100ms linear;
    margin-right: 10px;
    position: relative;
  }
  
  .map-button button:hover,
  .map-theme-button button:hover,
  .reset li {
    cursor: pointer;
  }
  
  .map-button button,
  .map-theme-button button,
  input[type="number"] {
    border: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
  }
  
  .map-theme-button button {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 35px;
    width: 125px;
    max-width: 95px;
    max-height: 35px;
    background-color: #e7e7e7;
    transition: background-color 100ms linear;
    position: relative;
  }
  
  .map-label {
    z-index: 15000;
    color: #fff;
    font-size: 1.25em;
    text-shadow: 1px 1px 2px #000;
    transition: color 100ms linear;
  }
  
  .map-button img {
    transition: filter 0.3s ease, opacity 0.3s ease;
  }
  
  .map-button img:hover {
    filter: brightness(1.2) saturate(1.2);
    opacity: 0.9;
  }
  
  .map-button img:active {
    filter: brightness(0.8) saturate(0.8);
    opacity: 0.7;
  }
  
  .orientation-control input[type="range"],
  .update-control input[type="range"],
  .zoom-control-settings input[type="range"] {
    width: 200px;
  }
  
  input[type="number"] {
    background-color: #131313;
    border-radius: 8px;
    font-size: 1em;
    font-family: "Bold";
  }
  
  .santa-label {
    background-image: url(../../images/labels/santa/default.png);
    background-size: cover;
    width: 80px;
    height: 80px;
  }
  
  .custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
    user-select: none;
  }
  
  .custom-checkbox input[type="checkbox"],
  .map-icon-label input,
  .theme-toggle-label input,
  .toggle-option input[type="radio"],
  .tracker-icon-label input,
  .weather-icon-label input {
    display: none;
  }
  
  .custom-checkbox .checkmark {
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 4px;
    margin-right: 8px;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s;
  }
  
  .custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #3c53e8;
    border-color: #3c53e8;
  }
  
  .custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .number-toggle,
  .units-toggle {
    display: flex;
    gap: 10px;
    margin: 10px 0;
  }
  
  .number-toggle {
    padding-bottom: 5px;
  }
  
  .toggle-option {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .toggle-label {
    background-repeat: no-repeat;
    background-size: auto;
    padding: 8px 16px;
    border: 2px solid #fff;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  .toggle-option input[type="radio"]:checked + .toggle-label {
    background-color: #3c53e8;
    border: 2px solid #3c53e8;
    color: #fff;
  }
  
  .site-theme {
    display: flex;
    gap: 16px;
  }
  
  .theme-toggle-label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    aspect-ratio: 1.45/1;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .theme-toggle-label .toggle-label {
    position: relative;
    width: calc(85% - 2px);
    height: calc(80% - 3px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 8px;
    background-color: #000;
  }
  
  .map-image,
  .theme-toggle-label .toggle-label .toggle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  .toggle-icon-image {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
  }
  
  .map-image {
    border-radius: 5px;
  }
  
  .theme-toggle-label .toggle-label .toggle-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
  }
  
  .theme-toggle-label input:checked + .toggle-label {
    border: 2px solid #3c53e8;
    box-shadow: 0 0 10px 51px #3c53e88e;
  }
  
  .map-icon-label input:checked + .toggle-label .toggle-text,
  .theme-toggle-label input:checked + .toggle-label .toggle-text,
  .tracker-icon-label input:checked + .toggle-label .toggle-text,
  .weather-icon-label input:checked + .toggle-label .toggle-text {
    color: #3c53e8 !important;
  }
  
  #mixed-color input[type="radio"]:checked + .toggle-label {
    color: #3c53e8;
    mix-blend-mode: normal;
  }
  
  body.light-mode .theme-toggle-label .toggle-text {
    color: #000;
  }
  
  .clock,
  body,
  html {
    width: 100%;
    display: flex;
  }
  
  body,
  html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    background-color: #000;
  }
  
  .clock {
    position: absolute;
    top: 30%;
    left: 0;
    height: 25%;
    color: #fff;
    text-align: center;
    font-family: Arial, sans-serif;
    z-index: 199999;
  }
  
  .clock,
  .countdown,
  .countdown-box,
  body,
  html {
    align-items: center;
    justify-content: center;
  }
  
  .countdown {
    color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    display: flex;
    text-align: center;
    z-index: 9997;
  }
  
  .countdown-box {
    flex-direction: column;
    padding: 10px;
    margin: 0 5px;
  }
  
  .countdown-number {
    font-size: 3em;
    font-family: "Bold", sans-serif;
    position: relative;
    transition: transform 0.5s ease, color 0.5s ease;
    animation: none;
  }
  
  .countdown-unit {
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 5px;
  }
  
  .countdown-colon {
    font-size: 3em;
    font-family: "Bold", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flash {
    animation: flash 0.5s ease forwards;
  }
  
  .hide-countdown {
    position: relative;
    margin-top: auto;
    text-align: center;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-family: "Light", sans-serif;
    text-decoration: underline;
    font-size: 1em;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .hide-countdown:hover {
    color: #3c53e8;
  }
  
  .pre-tracking-widget {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    color: #fff;
    font-size: 1.2em;
    box-sizing: border-box;
    padding: 10px;
    width: 35%;
    height: auto;
    border-radius: 10px;
    background-color: #1a1a1a;
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
  }
  
  .stats-row-prep {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
  }
  
  .distance-sentence {
    font-family: "Light", sans-serif;
    font-size: 1.5em;
    margin: 0;
  }
  
  #distance2 {
    font-family: "Bold", sans-serif;
  }
  
  .journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: "Bold", Arial, sans-serif;
    font-size: 0.95em;
    border-radius: 10px;
    z-index: 1;
  }
  
  .journey-overlay.hidden {
    opacity: 0;
    z-index: -1;
  }
  
  .final-prep {
    margin: 20px;
  }
  
  .analog,
  .hour,
  .min,
  .sec {
    display: flex;
    justify-content: center;
    border-radius: 50%;
  }
  
  .analog {
    width: 120px;
    height: 120px;
    max-width: 120px;
    min-height: 120px;
    align-self: center;
    align-items: center;
    background-color: #d1d1d1;
    background-image: url(https://holidaytrackerhub.com/images/clock.png);
    background-position: center center;
    background-size: cover;
    border: 4px solid var(--main-bg-color);
    box-shadow: 0-15px 15px rgba(255, 255, 255, 0.05),
      0 15px 15px rgba(0, 0, 0, 0.3);
    transition: all ease 0.2s;
    margin: 0 auto;
    position: relative;
  }
  
  .analog:before,
  .hour:before {
    content: "";
    position: absolute;
    background-color: var(--main-text-color);
  }
  
  .analog:before {
    height: 0.75rem;
    width: 0.75rem;
    border: 2px solid var(--main-bg-color);
    border-radius: 50%;
    z-index: 1000;
    transition: all ease 0.2s;
  }
  
  .hour,
  .min,
  .sec {
    position: absolute;
  }
  
  .hour {
    height: 70px;
    width: 70px;
  }
  
  .hour:before {
    height: 50%;
    width: 3px;
    border-radius: 6px;
    background-color: #0e0e0e;
  }
  
  .min {
    height: 85px;
    width: 85px;
  }
  
  .min:before,
  .sec:before {
    content: "";
    height: 50%;
    width: 2px;
  }
  
  .min:before {
    background-color: var(--main-text-color);
    border-radius: 4px;
    background-color: #1d1d1d;
  }
  
  .sec {
    height: 100px;
    width: 100px;
  }
  
  .sec:before {
    background-color: red;
    border-radius: 2px;
  }
  
  .switch-cont {
    margin: 2em auto;
    bottom: 0;
  }
  
  .switch-cont .switch-btn {
    font-family: monospace;
    text-transform: uppercase;
    outline: 0;
    padding: 0.5rem 1rem;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    border: 1px solid var(--main-text-color);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all ease 0.3s;
  }
  
  .text-clock {
    text-align: center;
  }
  
  .date {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .time {
    font-size: 1.2rem;
    color: #555;
    font-family: "Bold";
  }
  
  .weather-icon-label .toggle-label,
  .widget1 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .widget1 .content {
    justify-content: center;
    height: calc(100% - 4rem);
    text-align: center;
    padding: 1rem;
  }
  
  .selected-set,
  .selected-set-credits {
    display: inline;
    white-space: nowrap;
  }
  
  .selected-set p,
  .selected-set span,
  .selected-set-credits p,
  .selected-set-credits span {
    display: inline;
  }
  
  #light-label {
    color: #131313;
  }
  
  #mixed-color {
    color: #fff;
    mix-blend-mode: difference;
    transition: color 0.3s ease, mix-blend-mode 0.3s ease;
  }
  
  .weather-icon-label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    aspect-ratio: 1/1;
    height: 85px;
    overflow: hidden;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .weather-icon-label .toggle-label {
    position: relative;
    width: 73%;
    height: 73%;
    justify-content: flex-end;
    padding: 8px;
    background-color: #161616;
  }
  
  .weather-icon-label .toggle-label .toggle-image {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.699));
    transition: background-image 0.5s ease;
  }
  
  .weather-icon-label .toggle-label .toggle-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
  }
  
  .weather-icon-label input:checked + .toggle-label {
    border: 2px solid #3c53e8;
    box-shadow: 0 0 10px 51px #3c53e88e;
  }
  
  #map-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #ddd;
  }
  
  #menu-button,
  .nav-arrow {
    border: 0;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #menu-button {
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
    position: fixed;
    top: 10px;
    left: 10px;
    height: 50px;
    width: 50px;
    background-color: #3c53e8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    transition: background-color 0.3s ease;
  }
  
  #menu-button img,
  #unlock-map img,
  #zoom-container img {
    height: 30px;
    width: auto;
  }
  
  #donate-button:hover,
  #menu-button:hover,
  #unlock-map:hover,
  #zoom-in:hover,
  #zoom-out:hover,
  .popup-actions .confirm-button:hover {
    background-color: #8293fd;
  }
  
  .nav-arrow {
    margin: 5px;
    padding: 10px;
    background-color: #1a1a1a;
    color: #fff;
  }
  
  .nav-arrow i {
    font-size: 16px;
  }
  
  #unlock-map {
    bottom: 20px;
  }
  
  #notification-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    width: auto;
    z-index: 10000000000;
    display: none;
    text-align: center;
  }
  
  .notification {
    background-color: #3c53e8;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    margin: 10px auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fade-in-out 4s forwards;
  }
  
  #unlock-map {
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
    position: fixed;
    top: 108px;
    right: 10px;
    height: 40px;
    background-color: #3c53e8;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
  }
  
  #unlock-map,
  #zoom-container,
  #zoom-in,
  #zoom-out {
    width: 40px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
  }
  
  #zoom-container {
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
    position: fixed;
    top: 10px;
    right: 10px;
    height: 88px;
    border-radius: 5px;
    z-index: 1000;
    overflow: hidden;
  }
  
  #zoom-in,
  #zoom-out {
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
    font-size: 2em;
    height: 44px;
    cursor: pointer;
    background-color: #3c53e8;
  }
  
  /* Adjustments for screens smaller than 1440px */
  @media (max-width: 1440px) and (min-width: 769px) {
    html {
      zoom: 0.8; /* Scales the entire page by 150% */
    }
  
    #map,
    #map-container {
      height: 125%;
    }
  
    #map {
      position: absolute;
      top: 0;
      left: 0;
      width: 125%;
    }
  }
  
  /* Adjustments for screens smaller than 1280px */
  @media (max-width: 1280px) and (min-width: 769px) {
    html {
      zoom: 0.65; /* Scales the entire page by 150% */
    }
  
    #map,
    #map-container {
      height: 154%;
    }
  
    #map {
      position: absolute;
      top: 0;
      left: 0;
      width: 154%;
    }
  }
  
  /* Adjustments for screens smaller than 1024px */
  @media (max-width: 1024px) and (min-width: 769px) {
    html {
      zoom: 0.45; /* Scales the entire page by 150% */
    }
  
    #map,
    #map-container {
      height: 222%;
    }
  
    #map {
      position: absolute;
      top: 0;
      left: 0;
      width: 222%;
    }
  }
  
  #donate-button,
  .unsupported-browser {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #donate-button {
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
    top: 10px;
    left: 70px;
    height: 40px;
    width: auto;
    font-size: 1.5em;
    padding: 20px;
    font-family: "Bold";
    box-sizing: border-box;
    z-index: 9998;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #3c53e8;
    border: 0;
    border-radius: 5px;
    transition: background-color 100ms linear, color 100ms linear;
  }
  
  #donate-button:hover {
    cursor: pointer;
  }
  
  #kofiframe {
    max-height: 400px;
    width: fit-content;
  }
  
  .unsupported-browser {
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out,
      transform 300ms ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    color: #fff;
    opacity: 1;
    visibility: visible;
    flex-direction: column;
    text-align: center;
    font-family: "Bold", Arial, sans-serif;
    font-size: 0.95em;
    z-index: 199999;
  }
  
  #tracker-load {
    animation: spin 1s linear infinite;
  }
  
  .unsupported-icon-container {
    width: 60px;
    height: 60px;
  }
  
  #tracker-load,
  #unsupported-icon {
    width: 60px;
    height: auto;
    margin-right: 50px;
    display: block;
  }
  
  .unsupported-browser p {
    max-width: 800px;
  }
  
  #confirm-button,
  #return-button {
    display: inline-block;
    transition: background-color 100ms linear;
    margin-bottom: 10px;
  }
  
  #confirm-button,
  #return-button,
  .settings-button {
    background-color: #3c53e8;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    border: 0;
  }
  
  #confirm-button i,
  .settings-button i {
    margin-right: 10px;
  }
  
  #confirm-button:hover,
  .settings-button:hover {
    background-color: #8293fd;
    cursor: pointer;
  }
  
  #return-button,
  .settings-button {
    background-color: #797d86;
  }
  
  #return-button:hover {
    cursor: pointer;
  }
  
  .tracker-loading h2,
  .unsupported-browser h2 {
    font-size: 2em;
  }
  
  .tracker-loading button,
  .tracker-loading span,
  .unsupported-browser button,
  .unsupported-browser p {
    font-size: 1.25em;
  }
  
  .settings-button {
    background-color: #3c53e8;
    padding: 10px;
    font-size: 1em;
    font-family: "Bold";
  }
  
  #optimize-confirmation-popup ul {
    margin: 20px 0;
    padding-left: 20px !important;
    list-style-type: disc;
    color: #333;
    font-size: 14px !important;
    line-height: 1.6 !important;
    text-align: left !important;
  }
  
  #optimize-confirmation-popup ul li {
    margin-bottom: 10px !important;
  }
  
  .popup-actions {
    display: flex;
    justify-content: right !important;
    gap: 10px;
    margin-top: 10px;
    font-family: "Bold";
    font-size: 1em;
  }
  
  .popup-actions .cancel-button,
  .popup-actions .confirm-button {
    font-family: "Bold";
    background-color: #3c53e8;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
  }
  
  .popup-actions .cancel-button {
    background-color: #797d86;
  }
  
  #return-button:hover,
  .popup-actions .cancel-button:hover {
    background-color: #c1c7d4;
  }
  
  .map-icon-label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    aspect-ratio: 1/1;
    height: 100px;
    overflow: hidden;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .map-icon-label .toggle-label {
    position: relative;
    width: 76%;
    height: 76%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 8px;
    background-color: #161616;
  }
  
  .map-icon-label .toggle-label .toggle-image {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.699));
    transition: background-image 0.5s ease;
  }
  
  .map-icon-label .toggle-label .toggle-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
  }
  
  .map-icon-label input:checked + .toggle-label {
    border: 2px solid #3c53e8;
    box-shadow: 0 0 10px 30px #3c53e88e;
  }
  
  .tracker-icon-label {
    position: relative;
    display: inline-block;
    cursor: pointer;
    aspect-ratio: 1/1;
    height: 85px;
    overflow: hidden;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .tracker-icon-label .toggle-label {
    position: relative;
    width: 73%;
    height: 73%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 8px;
    background-color: #161616;
  }
  
  .tracker-icon-label .toggle-label .toggle-image {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.699));
    transition: background-image 0.5s ease;
  }
  
  .tracker-icon-label .toggle-label .toggle-text {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease;
  }
  
  .tracker-icon-label input:checked + .toggle-label {
    border: 2px solid #3c53e8;
    box-shadow: 0 0 10px 51px #3c53e88e;
  }
  
  .countdown {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 9997;
  }
  
  .countdown-box {
    .countdown {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(10px);
      color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      z-index: 9997;
    }
  
    .countdown-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 10px;
      margin: 0 5px;
    }
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 0 5px;
  }
  
  .countdown-number {
    font-size: 3em;
    font-family: "Bold", sans-serif;
    position: relative;
    transition: transform 0.5s ease, color 0.5s ease;
    animation: none;
  }
  
  .countdown-unit {
    font-size: 1em;
    text-transform: uppercase;
    margin-top: 5px;
  }
  
  .countdown-colon {
    font-size: 3em;
    font-family: "Bold", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .flash {
    animation: flash 0.5s ease forwards;
  }
  
  @keyframes flash {
    0% {
      color: red;
      transform: scale(1.3);
    }
    100% {
      color: white;
      transform: scale(1);
    }
  }
  
  /* Styling the font selection container */
  .font-selection {
    font-size: 16px;
  }
  
  /* Label styling */
  .font-selection label {
    display: block;
    font-size: 1.1em;
    font-family: "Bold";
    color: #cfcfcf;
  }
  
  /* Dropdown style */
  #font-select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #cccccc00;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: "Bold";
    transition: background-color 0.3s, border-color 0.3s;
    appearance: none; /* Remove default dropdown arrow */
  }
  
  /* Custom dropdown arrow */
  #font-select::-ms-expand {
    display: none; /* Remove default arrow for IE */
  }
  
  /* Styling for dropdown when focused */
  #font-select:focus {
    border-color: #3c53e8;
    background-color: #141414;
    outline: none;
  }
  
  /* Hover effect for the dropdown */
  #font-select:hover {
    border-color: #3c53e8;
  }
  
  /* Styling the options */
  #font-select option {
    padding: 10px;
    font-family: "Bold";
    color: #cfcfcf;
    font-size: 14px;
  }
  
  /* Hover effect for options */
  #font-select option:hover {
    background-color: #f1f1f1;
  }
  
  #widget-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 280px;
    display: flex;
    align-items: flex-end;
    padding: 0 10px 10px;
    box-sizing: border-box;
    transition: opacity 0.3s ease-in-out;
  }
  
  #map-controls button,
  .widget {
    height: 100%;
    color: #fff;
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
  }
  
  .widget {
    margin: 0 5px;
    flex-grow: 1;
    font-size: 1.2em;
    box-sizing: border-box;
    padding: 10px;
  }
  
  .widget1 {
    flex-basis: 20%;
    height: 100%;
  }
  
  .widget1,
  .widget2,
  .widget3,
  .widget4,
  .widget5 {
    position: relative;
    overflow: hidden !important;
    border-radius: 10px;
    background-color: #1a1a1a !important;
  }
  
  .widget2 {
    flex-basis: 15%;
    height: 75%;
    position: relative;
  }
  
  .widget3,
  .widget4,
  .widget5 {
    flex-basis: 30%;
    height: 85%;
  }
  
  .widget4,
  .widget5 {
    flex-basis: 15%;
    height: 75%;
  }
  
  .widget5 {
    flex-basis: 20%;
    height: 100%;
  }
  
  @media (max-width: 768px) {
    #mobile-nav {
      display: flex;
    }
  
    #donate-button {
      position: fixed !important;
      width: 50px !important;
      height: 50px !important;
      top: 10px !important;
      left: 70px !important;
    }
  
    #unlock-map {
      top: 10px !important;
      width: 50px !important;
      height: 50px !important;
    }
  
    #zoom-in,
    #zoom-out,
    .zoom-control {
      display: none !important;
    }
  
    .pre-tracking-widget {
      width: calc(100% - 20px) !important;
    }
  
    .widget {
      display: none;
    }
  
    .widget3 {
      display: block;
      flex-basis: 100%;
    }
  
    .pre-tracking-widget {
      max-width: 90%;
    }
  
    #widget-container {
      position: absolute;
      bottom: 60px;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: flex-end;
      padding: 0 10px 10px;
      box-sizing: border-box;
    }
  
    html {
      zoom: 0.8; /* Scales the entire page by 150% */
    }
  
    #map,
    #map-container {
      height: 125%;
    }
  
    #map {
      position: absolute;
      top: -25%;
      left: 0;
      width: 125%;
    }
  }
  
  @media (min-width: 769px) {
    .widget {
      display: block;
    }
  
    #mobile-nav {
      display: none;
    }
  }
  
  .pre-tracking-widget {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    color: #fff;
    font-size: 1.2em;
    box-sizing: border-box;
    padding: 10px;
    width: 35%;
    height: auto;
    border-radius: 10px;
    background-color: #1a1a1a;
    box-shadow: 7px 5px 10px -2px rgba(0, 0, 0, 0.66);
  }
  
  .weather-icon-label .toggle-label,
  .widget1 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .widget1 .content {
    justify-content: center;
    height: calc(100% - 4rem);
    text-align: center;
    padding: 1rem;
  }
  
  .stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
  }
  
  .stats-row-prep {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
  }
  </pre></body></html>