/* =========================
   AMAPO Official Theme
   ========================= */

/* ===== ブランド ===== */
:root {
  /* ===== 基本設定 ===== */
  color-scheme: light;
  /* ===== ブランドカラー ===== */
  --bulma-primary-h: 244deg;  /* 色相 (Hue) */
  --bulma-primary-s: 44%;     /* 彩度 (Saturation) */
  --bulma-primary-l: 33%;     /* 明度 (Lightness) */
  --bulma-link-h:  245deg;  /* 色相 (Hue) */
  --bulma-link-s: 41%;     /* 彩度 (Saturation) */
  --bulma-link-l: 55%;     /* 明度 (Lightness) */
  --bulma-primary: hsl(var(--bulma-primary-h), var(--bulma-primary-s), var(--bulma-primary-l));
  --bulma-link: hsl(var(--bulma-link-h), var(--bulma-link-s), var(--bulma-link-l));
 /* ===== ページ背景 ===== */
  --bulma-body-background-color: #ECECFA;
}

/* ===== コンテンツ ===== */
.content {
  color: #333333;
}

/* ===== ナビバー ===== */
.navbar.is-primary {
  background-color: #312D79;
}

.input:focus {
  border-color: #3B3486;
  box-shadow: 0 0 0 0.125em rgba(59, 52, 134, 0.25);
}

.input::placeholder {
  color: #9A9AB0;
}

/* ===== パネル ===== */
.panel-block {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.no-border-bottom {
  border-bottom: none !important;
}

/* ===== 表 ===== */
.has-background-info-light,
.has-background-info-light * {
  color: #363636 !important;
}

.has-background-grey-lighter,
.has-background-grey-lighter * {
  color: #363636 !important;
}

/* ===== iframe ===== */
.iframe-container {
  width: 100%;
  margin-top: 1rem;
}

.iframe-container iframe {
  width: 100%;
  min-height: 500px;
  border: none;
}

.table-header {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* ===== google ボタン ===== */
.google-btn {
  width: 100%;
  height: 42px;
  background-color: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.google-btn:hover {
  background-color: #f7f8f8;
}

.google-icon {
  width: 18px;
  height: 18px;
}