.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;
}

.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: space-between;
    width: 172px;
    height: 172px;
    aspect-ratio: 1;
}

.upper-block {
    width: 100%;
}

.lower-block {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.single-block-value-component {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.single-block-subtitle {
    color: #18191a;
    font-family: "NotoSansTc-Bold", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.subvalue {
    color: #18191a;
    font-family: "NotoSansTc-Bold", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

.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;
}

.single-block-comment {
    color: #18191a;
    font-family: "NotoSansTc-Bold", sans-serif;
    font-size: 14px;
    font-weight: 500;
}

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

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

.aqi-group {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 225px;
    height: 102px;
}

.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: 100%;
}

.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;
}

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

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

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

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

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

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

.chart {
    width: 360px;
    height: 250px;
}
