/* 主要樣式 */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

.map-container {
  width: 100%;
  height: 100%;
}

.button {
  font-family: inherit;
  background: var(--widget-color-onPrimaryContainer);
  color: var(--widget-color-onPrimary);
  height: 30px;
  border: 4px solid transparent;
  border-radius: 4px;
  cursor: pointer;
}

#widgetBtn {
  position: absolute;
  top: 5px;
  left: 5px;
}

/* 主題選擇 UI */
.theme-picker {
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: 99999;
  display: flex;
  justify-content: center;
  width: 100vw;
  gap: 10px;
}

.theme-button {
  background: var(--widget-color-primary80);
  width: 30px;
  height: 30px;
  border: 4px solid transparent;
  border-radius: 50%;
  cursor: pointer;
}