body {
  --color-primary-50: #E9F7F9;
  --color-primary-100: #D3EFF3;
  --color-primary-200: #A7DFE7;
  --color-primary-300: #7BD0DB;
  --color-primary-400: #54C3D1;
  --color-primary-500: #2EB6C7;
  --color-primary-600: #25929F;
  --color-primary-700: #1C6D77;
  --color-primary-800: #124950;
  --color-primary-900: #092428;
  --color-primary-950: #051214;

  /* background-color: var(--color-primary-50); */
  width: auto;
  margin: 0;
  padding: 0 0px; /* 左右各 20px 的邊界 */
}

.marquee {
  width:900px;
  background-color: #2EB6C7;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  animation: marquee 15s linear infinite;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.runheader {
  width: 100%;
  background-color: #2EB6C7;
  color: white;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
}

* {
  font-family: 'PingFang SC', 'Roboto', 'Microsoft YaHei', 'Helvetica', sans-serif;
  color: var(--color-primary-900);
}
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.floating-button img {
  width: 30px;
  height: 30px;
}
/* radio button */
.radio-button-group {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  grid-gap: 8px;
  /* background-color: var(--color-primary-800); Dark blue background */
  border-radius: 50px;
  padding: 5px 0px!important;
  position: relative;
  height: 40px;
}

.radio-button-group > input {
  display: none;
}

.radio-button-group > label {
  text-align: center;
  flex: 1;
  padding: 13px;
  color: var(--color-primary-500); /* Light text color */
  font-size: 14px;
  cursor: pointer;
  border: 1.5px solid var(--color-primary-500);
  border-radius: 8px;
  /* border-radius: 50px; */
  margin: 3px 0px 3px 0px;
  /* transition: background-color 0.3s ease, color 0.3s ease; */
}

.radio-button-group > input:checked + label {
  background-color: var(--color-primary-500); /* Light blue selected state */
  color: white; /* White text for active state */
}

.radio-button-group input:checked + label + input + label {
  background-color: transparent; /* Ensure other label has no background */
  color: var(--color-primary-500); /* Light text color */
}


#customAddressSection {
  display: none;
  flex-direction: row;
  padding:0;
  width:100%;
  height: 40px;
  background-color: #f1f3f4; /* grey 50 */
  border-radius: 8px;
  margin: 15px 0;
  /* border: 1.5px solid #91a0a8; */
}
#customAddressSection > input { /* grey 50 & grey 400*/
  width: 85%;
  padding-left: 11.5px;
  border-radius: 8px;
  border-width: 0;
  background-color: rgba(0,0,0,0);
}

#customAddressSection > button {
  width: 15%;
  border-width: 0;
  background-color: rgba(0,0,0,0);
  position: relative;
}

#customAddressSection > button > img {
  height:100%;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 9px;
}


#radarSelector{
  padding: 10px 25px 10px 10px;
  border-radius: 0px;
  border-width: 0;
  position: relative;
  appearance: none;
  background-color: var(--color-primary-50);
  /* border: 1px solid red; */
}


#radarSelector > option {
  padding: 10px;
  background-color: #f1f3f4;
}

#radarSelector:focus {
  background-color: var(--color-primary-100);
}

#map {
  position: relative;
  aspect-ratio: 1.2;
  width: calc(100%-3px);
  margin-top: 20px; /* 上方距離 */
  margin-bottom: 20px; /* 下方距離 */
  background-color: #e3e7e9; /* 淡灰色背景 */
  border: 1.5px solid #2EB6C7; /* 邊框樣式可選 */
  border-radius: 8px;
}

#weatherOverlayImage {
    filter: blur(0px);
    /* transition: all 0.3s ease; */
  }
