

/* ── 모바일 토글 버튼 (기본 숨김) ── */
.mobile-toggle-bar {
  display: none;
  margin: 8px;
  gap: 8px;
}
.mobile-toggle-bar button {
  flex: 1;
  padding: 4px 0;
  font-size: 0.8rem;
  border: 1px solid #666;
  background: #222;
  color: #fff;
  border-radius: 4px;
}
.mobile-toggle-bar button.active {
  background: #444;
}

.stock-theme {
  color: gold;
}

/* ── 모바일 전용 (≤1023px) ── */
@media (max-width: 1023px) {
  /* 토글 버튼 보이기 */
  .mobile-toggle-bar {
    display: flex;
  }
  .chart-theme-label {
    display: none;
  }

.right-panel .chart-value {
  left: 160px;
}
.left-panel .chart-value {
  left: 160px;
}
}

@media (max-width: 400px) {

.right-panel .chart-value {
  left: 140px;
}
.left-panel .chart-value {
  left: 140px;
}
}
/* global.css 또는 issue.css 등 적당한 파일에 추가 */
#splash-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2b2b3c;
  z-index: 9999;
}
#splash-screen img {
  max-width: 80%;
  max-height: 80%;
}
