.wrap {
    width: 1200px;
    height: 630px;
}

#map {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
}

.info-zone {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 100%;
    height: 100%;
}

.nav-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 3px 0px;
    /* border-radius: 12px; */
    /* border: 1px solid #c0c0c0; */
    width: 36px;
    height: 100%;
}

.main-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    cursor: pointer;
}

.main-tab:hover {
    background-color: #f0f0f0;
}

.main-tab.active {
    background-color: #C7D9B5;
}

img.nav-icon {
    width: 20px;
    aspect-ratio: 1;
}

.main-tab-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 379px;
    height: 100%;
}

.title {
  color: #18191a;
  font-family: "NotoSansTc-Bold", sans-serif;
  font-size: 20px;
  font-weight: 700;
  padding: 10px;
}

.weather-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #eef4ce;
    border-radius: 12px;
    width: 359px;
    padding: 12px 20px 12px 10px;
}

.date {
    color: #18191a;
    font-family: "NotoSansTc-Medium", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.weather {
    color: #18191a;
    font-family: "NotoSansTc-Medium", sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.single-block-group {
    display: grid;
    grid-template-columns: repeat(2, 172px);   /* 兩欄，每欄寬 633px */
    gap: 15px;
    width: 100%;
    height: 100%;
}

.single-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #eef4ce;
    border-radius: 12px;
    padding: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 172px;
    height: 172px;
    aspect-ratio: 1;
}

.title-block {
    display: flex;
    flex-direction: row;
    gap: 3px;
}

.title-icon {
    width: 16px;
    aspect-ratio: 1;
}

.block-title {
  color: #5a5a5a;
  /* text-align: left; */
  font-family: "NotoSansTc-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.single-block-value {
  color: #18191a;
  font-family: "NotoSansTc-Bold", sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.wind-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #eef4ce;
    border-radius: 12px;
    width: 359px;
    padding: 10px;
}

.wind-value-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* gap: 9px; */
}

.wind-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 225px;
    height: 102px;
}

.wind-component {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-style: solid;
    border-color: #a0a0a0;
    border-width: 0px 0px 1px 0px;
    padding: 6px 0px;
    width: 225px;
}

.wind-component:last-child {
    border-width: 0px;
}

.block-subtitle {
    color: #18191a;
    font-family: "NotoSansTc-Regular", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.wind-value {
  color: #18191a;
  font-family: "NotoSansTc-Regular", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.wind-compass {
    position: relative;
    width: 102px;
    height: 102px;
    aspect-ratio: 1;
}

img.compass, img.arrow, .center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

img.compass {
    width: 100px;
    aspect-ratio: 1;
}

img.arrow {
    transform-origin: center center;
}

.center-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #A0A0A0;
    font-family: "NotoSansTc-Regular", sans-serif;
    font-size: 16px;
    font-weight: 600;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eef4ce;
}

.image-display-block {
    display: flex;
    flex-direction: column;
    gap: 15px ;
    width: 100%;
}

.stat-tabs {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
}

.stat-tab {
  width: 95px;
  padding: 3px 0px;
  border-width: 1px 0px;
  border-style: solid;
  border-color: #5a5a5a;
  text-align: center;
  color: #5a5a5a;
  font-family: "NotoSansTc-Medium", sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.stat-tab:first-child {
    border: 1px solid #5a5a5a;
    border-radius: 12px 0px 0px 12px;
}

.stat-tab:last-child {
    border: 1px solid #5a5a5a;
    border-radius: 0px 12px 12px 0px;
}

.stat-tab.active {
    background-color: #eef4ce;
}

.stat-tab-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.stat-tab-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.season-group {
    display: flex;
    flex-direction: row;
    gap: 0px;
}

.season-group * {
    cursor: pointer;
}

.season-group label {
    font-size: 14px;
    font-weight: 400;
    margin-left: 3px;
    margin-right: 16px;
}

.season-group input {
    appearance: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    transition: 0.15s all linear;
    position: relative;
    top: 2px;
}

.season-group input:checked {
    border: 5px solid #80998F;
}
