.image-player,
.image-player * {
    box-sizing: border-box;
}

.image-player {
  background: linear-gradient(
    106.13deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  border-radius: 8px;
  border: 1px solid transparent;
  border-image: linear-gradient(
    175.17deg,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  border-image-slice: 1;
  height: 630px;
  position: relative;
  box-shadow: 0px 4px 8px -1px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  padding: 25px 15px 15px 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.player-header {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    height: 41px;
    /* left: 25px; */
    /* top: 25px; */
    /* overflow: hidden; */
}

.time-selector {
    display: flex;
    flex-direction: row;
    /* padding: 8px 12px 8px 12px; */
    /* border: 1px solid #7a7a7a; */
    /* border-radius: 5px; */
    /* gap: 10px; */
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);   /* 向左移動自身寬度的一半，使其置中 */
}

input.selector {
    color: #18191a;
    text-align: left;
    font-family: "NotoSansTc-Regular", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.station {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    justify-content: center;
    /* padding: 0px 0px; */
    margin-left: auto;  /* 自動向右 */
    /* position: absolute; */
    /* left: 1158px; */
    /* top: 0px; */
}

.station-marker {
    font-size: 20px !important;
    color: #D2562E;
}

.station-name {
    font-family: "NotoSansTc-Regular", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #18191a;
}

.display-panel {
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

button.btn-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #80998F;
    font-size: 24px;
    width: 48px;
    border-radius: 50%;
}

button.btn-switcher:hover {
    background-color: #748780;
}

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

.image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 8px;
    width: 580px;
    height: 260px;
}

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