/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *



 */

body {
  background-color: #000; /* 背景を黒 */
  color: #fff; /* 文字を白 */
}

/* ページ上部にフラッシュメッセージを表示するための余白を設定 */
.flash-message-area {
  min-height: 60px; /* 画面上部の余白（高さ）を確保 */
  margin-bottom: 16px;
}

.title-layout-1 {
  font-size: 28px;
  margin: 20px 0px 40px 0px; /* 上下のみ余白をとる */
}

.title-layout-2 {
  font-size: clamp(4px, 8vw, 26px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 50px;
}


/* ナビゲーション全体 */
/* ナビゲーションコンテナ */
.nav-container {
  margin-bottom: 1rem; /* ナビのメニューとアバターの間を設定 */
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 8px; /* トグルボタンとnavメニューの間隔 */
}

/* トグルボタンの見た目 */
.nav-toggle-button {
  background-color: #000000;
  color: #ff9900;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 8px;
  margin-bottom: 2px;
  align-self: flex-start; /* 縦位置の制御 */
  margin-left: 0; /* 左端に寄せる */
}

/* トグルボタンホバー時 */
.nav-toggle-button:hover {
  background-color:#000000 ;
  font-weight: bold;
  color: #fbf380;
}

/* ナビゲーションメニュー */
.nav-menu {
  display: flex; /* 横並びにする */
  gap: 10px; /* ボタン同士の間隔 */
  flex-wrap: wrap; /* はみ出したら折り返す */
  padding: 12px 2px;
  background-color: #000000;
}

.nav-button {
  display: inline-block;
  padding: 8px 4px;
  color: #e1e1e1; /* 文字の色 */
  transition: all 0.3s ease;
  text-decoration: none;
  background: linear-gradient(to top, #73200d 0%, #ff2f00 50%, #6f1400 100%);
  outline: 2px dotted #e19e00; /* 外線ドット */
  box-shadow: 0 0 10px #322c11 inset;
  outline-offset: 2px;
  border-radius: 8px;
  color: #ffffff;
  font-weight: 600;
  }

.nav-button:hover {
  background: #fff090;
  color: #c60000;
  transform: scale(1.1); /* 少し拡大 */
  font-weight: 900;
  box-shadow: 0 0 20px #fbf380;
}

/* user#showのナビを隠す */
.hidden {
  display: none;
}

/* シンプルカレンダーのレイアウト */
/* 前月　当月　次月のボタン */
.simple-calendar nav a {
  color: #ffffff; /* 文字の色 */
  text-decoration: none; /* 下線を消す */
  display: inline-block;
  padding: 4px 8px;
  margin: 0 4px;
  background-color: #000000;
  outline: 2px dotted #00f; /* 青色でドット */
  outline-offset: 2px;
  color: white;
  border: 1px solid white;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-bottom: 10px;
}

.simple-calendar nav a:hover {
  color: #ff6600;
  text-shadow:
    -1px -1px 0 #ffbb00,
     1px -1px 0 #ffbb00,
    -1px  1px 0 #ffbb00,
     1px  1px 0 #ffbb00;
}

.simple-calendar table {
  width: 95%;
  border-collapse: collapse; /* セルとセルの間の余白なし */
}
/* 曜日や日付が入る部分 */
.simple-calendar td {
  width: 40px !important;
  height: 50px !important;
  padding: 2px;
}
/* 日付のリンク部分のレイアウト */
.simple-calendar td a {
  display: block;
  width: 100%;
  height: 100%;
  color: white;
  text-align: center;
  padding: 0;
  margin: 0;
}

.simple-calendar td a:hover {
  /* opacity: 0.5; テキストの色を薄くする */
  color: #ff6600;
  font-weight: 800; /* 太文字にする */
  transform: scale(1.2); /* 少し拡大 */
  text-shadow:
    -1px -1px 0 #ffbb00,
     1px -1px 0 #ffbb00,
    -1px  1px 0 #ffbb00,
     1px  1px 0 #ffbb00;
}

.simple-calendar .current-month {
  background-color: #000000;
}

.simple-calendar .current-month a {
  color: white;
  text-decoration: none;
}

.simple-calendar .wday-0,
.simple-calendar .wday-6 {
  color: #ffffff;
}

/* 土日の色を変える */
.simple-calendar .wday-0 a {
  color: #ff0000;
}
.simple-calendar .wday-6 a {
  color: #3300ff;
}

/* 次月のマスの塗りつぶし */
.simple-calendar .next-month {
  background-color: #2e2e2e !important;
}

.simple-calendar .next-month a {
  color: #ffffff;
  text-decoration: none;
}

.simple-calendar .today {
  background-color: #00ff55 !important;
}

.simple-calendar .today a {
  background-color: transparent;
  color: #000000;
  font-weight: bold;
}

/* 前月のマスの塗りつぶし */
.simple-calendar .prev-month {
  background-color: #2e2e2e !important;
}

.simple-calendar .prev-month a {
  color: #ffffff;
  text-decoration: none;
}

.simple-calendar th.wday-0 {
  color: #ff0000; /* 日曜のヘッダーを赤 */
  text-align: center;
}

.simple-calendar th.wday-6 {
  color: #3300ff; /* 土曜のヘッダーを青 */
  text-align: center;
}

.simple-calendar th.wday-1,
.simple-calendar th.wday-2,
.simple-calendar th.wday-3,
.simple-calendar th.wday-4,
.simple-calendar th.wday-5 {
  text-align: center;
}

/* 月入力用カレンダーのレイアウト */
/* フォームの年・月・表示を横一列に並べるためのクラス */
.flex-form-row {
  display: flex;
  gap: 20px;
  align-items: flex-end; /* ラベルとボタンの高さをそろえる */
}

.form-submit-button {
  margin-top: 20px; /* 上との余白 */
}

.flex-form-row div {
  display: flex;
  flex-direction: column;
}
/* 年月入力フォームのレイアウト */
.selector {
  width: 120px;           /* ← 年月入力フォームの幅 */
  font-size: 1.2rem;      /* ← 年月入力フォームのテキストサイズ変更 */
  padding: 8px;
  background-color: black;
  color: white;
  border: 2px solid white;
  border-radius: 4px;
  outline: 2px dotted #00f; /* 青色でドット */
  outline-offset: 2px;
}

.form-label {
  color: white;
  font-size: 1rem;
  margin-bottom: 4px;
}

/* 目標やふりかえりの入力フォームサイズ */
.auto-expand-textarea {
  width: 90vw; /*ビューポートの横幅いっぱい*/
  height: 25vh; /* ビューポートの高さの1/4 */
  padding: 10px;
  font-size: 18px;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  /* resize: vertical; ユーザーが高さ調整可能にするなら */
  resize: none; /* ユーザーによるフォームの大きさ変更を禁止 */
  overflow: hidden; /* フォーム内にスクロールバーを出さない */
  background: #000000;
  color: #ffffff;
  outline: 2px dotted #00f; /* 青色でドット */
  outline-offset: 2px;
}

/* タイトルロゴのサイズなど */
.responsive-image {
  width: 60%;
  max-width: 800px; /* 最大幅を800pxに制限 */
  height: 60%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .responsive-image {
    max-width: 100%;
    width: auto;
    margin-bottom: 50px;      /* スマホではさらにスペースを広げる */
  }
}

/* アバターのサイズなど */
.avatar-image {
  width: 100%;
  max-width: 300px;
  min-width: 100px;
  height: auto; /* アスペクト比を保ちながら縮小 */
  display: block; /* 画像の下にできる余白を消す */
}

/* 敵キャラの位置 */
.enemy-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* 中央揃え */
  pointer-events: none; /* クリックなどを透過させたい場合 */
}

/* 敵キャラのサイズ */
.enemy-image {
  width: 100%;
  max-width: 200px;
  min-width: 200px;
  height: auto; /* アスペクト比を保ちながら縮小 */
  display: block; /* 画像の下にできる余白を消す */
  margin: 80px auto 20px auto;
}

@media (max-width: 768px) {
  .enemy-container {
    top: 25%; /* 中央から上寄りに変更 */
    transform: translate(-50%, -25%); /* Y方向の位置も一致させる */
  }

  .enemy-image {
    max-width: 60%;
    margin: 120px auto 20px auto; /* ステータスウインドウとの距離をとる */
  }
}

/* トップ画面のメニューウインド */
.menu-box {
  border: 2px solid white; /* 白い線で囲う */
  padding: 20px 30px; /* 内側の余白 */
  margin: 10px auto; /* 上下の余白と中央揃え */
  width: fit-content; /* コンテンツに合わせた幅 */
  color: white; /* 文字の色を白 */
  box-shadow: 0 0 10px #ffffff inset;
  font-family: "MS Gothic", "Osaka", "Yu Gothic", "Meiryo", sans-serif;
}

/* トップ画面のフッター */
.inquiry-box {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  color: #555;
  font-size: 18px;
}

hr {
  border: none;
  height: 1px;
  background-color: #ccc; /* 明るめのグレーで見やすく */
  margin: 20px 0; /* 上下に余白 */
}

.red-menu-box {
  border: 2px solid #ff6600;
  color: #ff6600;
  background-color: #000000;
  padding: 20px 20px 20px 20px;
  margin: 10px auto;
}

/* ロープレ風タイトル付きボックス */
.rpg-box {
  position: relative;
  border: 2px solid #e1e1e1; /* 枠の太さ・種類・色 */
  color: #e1e1e1;
  box-shadow: 0 0 10px #e1e1e1 inset;
  margin: 1.8em 1em; /* 枠外の余白 */
  width: 90vw; /*ビューポートの横幅いっぱい*/
  padding: 5px 15px;
}

.rpg-box-2 {
  position: relative;
  border: 2px solid #e1e1e1; /* 枠の太さ・種類・色 */
  color: #e1e1e1;
  box-shadow: 0 0 10px #e1e1e1 inset;
  margin: 1.8em 1em; /* 枠外の余白 */
  width: 90vw; /*ビューポートの横幅いっぱい*/
  max-width: 300px;
  padding: 5px 15px;
}

.rpg-box-title {
  position: absolute;
  padding: 0 0.5em;
  left: 20px;
  top: -13px; /* タイトルの位置を調整 */
  color: #e1e1e1; /* タイトルの文字色 */
  font-weight: bold;
  font-size:0.9em; /* タイトルの文字サイズ */
  background-color: #000000;
}

/* ページ全体を中央にそろえるコンテナ */
.center-container {
  display: flex;
  flex-direction: column;     /* 縦に並べる */
  align-items: center;        /* 横方向の中央揃え */
  justify-content: center;    /* 縦方向の中央揃え（必要なら） */
  min-height: 20vh;          /* 最低高さ */
  text-align: center;         /* テキストの中央揃え */
  font-family: "MS Gothic", "Osaka", "Yu Gothic", "Meiryo", sans-serif;
}

/* アカウントやログインの入力フォーム */
/* フォームをそろえる */
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
  /* flex-wrap: wrap; */
  width: 100%
}

/* ラベルの調整 */
.form-group label {
  width: 130px;        /* ラベルの幅を固定 */
  text-align: right;
  font-weight: bold;
  padding: 14px;
}

/* 入力フォームの調整 */
.form-group input {
  flex: 1;
  min-width: 250px; /* 最小幅を設定（初期サイズ） */
  max-width: 800px; /* 画面の幅を超えないよう制限 */
  background-color: black;       /* 内側の背景を黒に */
  color: white;                  /* 入力文字を白に */
  border: 2px solid white;       /* 外枠を白に */
  padding: 8px;
  font-size: 16px;
  box-sizing: border-box;        /* パディング込みでサイズ調整 */
  outline: 2px dotted #00f; /* 青色でドット */
  outline-offset: 2px;
}

/* バトル画面左上のステータスレイアウト */
.status-window {
  position: fixed;
  top: 40px; /* 上の余白 */
  left: 40px; /* 左の余白 */
  border: 2px solid white;
  background-color: black;
  color: white;
  padding: 16px 20px;
  width: 280px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;      /* 縦の中央寄せ */
  box-sizing: border-box;
  box-shadow: 0 0 10px #fff inset;
  font-family: "MS Gothic", "Osaka", "Yu Gothic", "Meiryo", sans-serif;
  z-index: 10;
}

/* 各ステータス項目 */
.status-item {
  text-align: left;         /* 左寄せ */
  margin: 4px 0;
  line-height: 1.4;
}

/* ▼ ウィンドウ2つを並べるための親要素 */
.battle-bottom-ui {
  position: absolute;    /* 画面内の好きな場所に固定する */
  bottom: 20px;          /* 画面の下から20pxの位置に配置 */
  left: 20px;            /* 画面の左から20pxの位置に配置 */
  right: 20px;           /* 画面の右端からも20pxあけて、幅を自動調整 */
  display: flex;         /* 子要素（ウィンドウ）を横並びにする */
  gap: 4px;              /* ウィンドウ同士の間隔を4pxに固定 */
  align-items: stretch;  /* 高さを揃える（短い方を長い方に合わせる） */
}

/* ▼ 左側のコマンドウィンドウのデザイン */
.battle-window {
  width: 160px;               /* 横幅を240pxに固定 */
  min-height: 160px;          /* 高さの最小値。足りなければ自動で伸びる */
  padding: 14px 5px 14px 5px; /* 余白 上 右 下 左 */
  background-color: black;    /* 背景を黒に */
  border: 2px solid white;    /* 白い2pxの枠線 */
  color: white;               /* 文字色は白 */
  font-family: "MS Gothic", "Osaka", "Yu Gothic", "Meiryo", sans-serif;  /* レトロゲーム風フォント（Google Fonts推奨） */
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 0 10px #fff inset;  /* 内側にうっすら白い影 */
  z-index: 20; /* ウィンドウの下にならないように調整 */
}

/* ▼ メッセージウィンドウのデザイン（右側） */
.battle-message-window {
  flex: 1 1 auto;             /* 画面の残りスペースを使って柔軟に広がる */
  max-width: 100%;           /* 最大でも600pxまでしか広がらない */
  min-width: 180px;           /* 最小でも240pxは確保（崩れ防止） */
  min-height: 160px;          /* 高さはコマンドウィンドウと同じ */
  z-index: 20; /* ウィンドウの下にならないように調整 */

  /* メッセージの位置を調整（上 右 下 左） */
  padding: 14px 12px 14px 12px;
  background-color: black;
  border: 2px solid white;
  color: white;
  font-family: "MS Gothic", "Osaka", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  box-shadow: 0 0 10px #fff inset;
  word-wrap: break-word;      /* 長い単語は途中で折り返す */
  overflow-wrap: break-word;  /* 同じく長い単語の折り返し（保険） */
}

.battle-command {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
}

.battle-command:hover {
  color: #fff700;
  /* transform: scale(1.1); 少し拡大 */
  text-shadow: 0 0 20px #fbf380; /* 輝き風の影 */
}

/* スマホ専用レイアウト調整 */
@media (max-width: 768px) {
  .battle-bottom-ui {
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    gap: 0;
    z-index: 100;
    display: flex;
  }

  .battle-command {
    padding: 6px 10px;
    font-size: 14px;
  }

  .status-window {
    top: 12px;
    left: 12px;
    padding: 8px 12px;
    width: auto;
    max-width: 90%;
    font-size: 14px;
  }

  .battle-message-window {
    font-size: 14px;
  }

  .battle-window,
  .battle-message-window {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box; /* パディングやボーダーを幅に含める */
    padding: 8px 6px;
    border: 2px solid #ffffff;
    height: 180px; /* 高さ固定 */
    /* overflow: auto; 内容が多ければスクロール*/
    flex-shrink: 0; /* 高さを縮めないようにする */
  }
}

/* 左に寄せる */
.left {
  text-align: left;
}

/* 中央にする */
.center {
  text-align: center;
}

/* チュートリアル画面用 */
.tutorial-container {
  margin: 0 auto; /* 中央寄せ */
  max-width: 800px; /* 幅の最大を調整 */
  padding-left: 20px; /* 画面左側の余白 */
  padding-right: 20px; /* 画面右側の余白 */
  text-align: left; /* 文章は左揃え */
  font-family: "MS Gothic", "Osaka", "Yu Gothic", "Meiryo", sans-serif;
}

/* ログアウトボタンが光るレイアウト */
.custom-button-01{
  display: inline-block;
  color: rgb(255, 255, 255); /* 文字の色 */
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid white; /* 枠線 */
  border-radius: 8px;
  background-color: #3300ff; /* ボタンの塗りつぶし */
  outline: 2px dotted #00f; /* 青色でドット */
  outline-offset: 2px;
}

.custom-button-01:hover{
  background-color: #fff700;
  color: rgb(0, 0, 0);
  transform: scale(1.1);
  box-shadow: 0 0 20px #fbf380;
}

.custom-button-02 {
  display: inline-block;
  color: #e1e1e1; /* 文字の色 */
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #d39d1f; /* 枠線 */
  border-radius: 8px;
  background: linear-gradient(to top, #73200d 0%, #ff2f00 50%, #6f1400 100%);
  outline: 2px dotted #e19e00; /* 外線ドット */
  box-shadow: 0 0 10px #322c11 inset;
  outline-offset: 2px;
}

.custom-button-02:hover {
  background: #fff990;
  color: #c60000;
  transform: scale(1.1);
  box-shadow: 0 0 20px #fbf380;
  font-weight: 900;
}

/* トップ画面のメニューアイコンが光るレイアウト */
.rpg-link {
  color: white;
  text-decoration: none;
  font-size: clamp(12px, 5vw, 18px); /* 12px〜18pxの範囲で自動調整 */
  white-space: nowrap; /* 改行しない */
  overflow: hidden; /* 収まりきらない部分を非表示にして隠す */
  text-overflow: ellipsis; /* はみ出したところを…（省略記号）にする */
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.rpg-link:hover {
  color: #fff700; /* ゴールド風 */
  transform: scale(1.1); /* 少し拡大 */
  text-shadow: 0 0 20px #fbf380; /* 輝き風の影 */
}

/* アカウント作成画面等のlink_toのレイアウト */
.link-page {
  font-size: 18px; /* 文字サイズ */
  color: #3300ff; /* 文字の色 */
  font-family: "MS Gothic", "Osaka", "Yu Gothic", "Meiryo", sans-serif; /* 文字の書体 */
  margin-top: 100px;   /* 上に10pxの余白 */
  margin-bottom: 100px; /* 下に10pxの余白 */
  text-decoration: none; /* アンダーラインをキャンセルする */
}

.link-page:hover {
  color: #fff700; /* ゴールド風 */
  transform: scale(1.1); /* 少し拡大 */
  text-shadow: 0 0 20px #fbf380; /* 輝き風の影 */
}

/* トップ画面のlink_toの効果設定 jsとセットで効果を発揮 */
a.disabled {
  pointer-events: none;
  opacity: 0.6; /* 遷移実行中に文字を薄くする */
  cursor: not-allowed;
}

/* link_toを横一列に並べる */
link-list {
  display: flex;
  gap: 10px;
}

/* 404エラー */
.error-404 {
  color: #ff0000;
}

/* === 上部フラッシュメッセージ === */
.flash-top {
  position: fixed;
  /* top: 100px; 上部フラッシュメッセージを下へ調整する */
  width: 100%;
  z-index: 1000;
  text-align: center;
}

.flash {
  padding: 12px;
  margin: 10px auto;
  border-radius: 6px;
  width: fit-content;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  transition: all 0.4s ease;
  opacity: 1;
}

/* 豪華なフラッシュメッセージ　ログイン時に使用 */
.flash.success {
  background: linear-gradient(to top, rgba(0,0,255,0) 0%, rgba(0, 162, 255, 0.8) 50%, rgba(0,0,255,0) 100%);
  text-align: center;
  border: 2px solid #d39d1f; /* 白い線で囲う */
  padding: 20px; /* 内側の余白 */
  margin: 10px auto; /* 上下の余白と中央揃え */
  width: fit-content; /* コンテンツに合わせた幅 */
  color: white; /* 文字の色を白 */
  text-shadow:
    -1px -1px 0 #322c11,
    1px -1px 0 #322c11,
    -1px 1px 0 #322c11,
    1px 1px 0 #322c11;
  box-shadow: 0 0 10px #322c11 inset;
}

.flash.danger {
  background-color: #000000;
  color: #ff6600;
}

.error-messages {
  color: #ff6600;
  text-align: left;
  margin-top: 10px;
  list-style: disc;
  padding-left: 20px;
}

/* === RPG風メッセージウィンドウ === */
.rpg-message-window {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #111;
  border: 2px solid #fff;
  padding: 20px;
  box-shadow: 0 -4px 10px rgba(255, 255, 255, 0.2);
  font-family: "MS Gothic", "Osaka", "Yu Gothic", "Meiryo", sans-serif;
  z-index: 900;
}

.rpg-message {
  color: #ffffff;
  font-size: 20px;
  text-align: center;
}

.field_with_errors {
  display: contents; /* 親要素の構造を壊さずにエラー表示　アカウント作成画面のレイアウト崩れ対策 */
}

/* アカウント作成とログインのsubmitボタンの効果設定 */
button.disabled,
input[type="submit"].disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: black !important; /* 背景を強制的に黒くする */
  color: white !important; /* 文字を白くする */
  -webkit-box-shadow: 0 0 0 1000px black inset !important; /* ブラウザの塗りつぶしを黒くする */
  -webkit-text-fill-color: white !important; /* 自動補完後の文字の色を白くする */
  transition: background-color 5000s ease-in-out 0s; /* 一部ブラウザの再描写バグ対策 */
}

* {
  outline: none;
  border: none;
}
.simple-calendar {
  table {
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-vertical-spacing: 0px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid rgb(221, 221, 221);
    border-collapse: collapse;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
  }

  tr {
    border-collapse: collapse;
  }

  th {
    padding: 6px;
    border-bottom: 2px solid rgb(221, 221, 221);
    border-collapse: collapse;
    border-left: 1px solid rgb(221, 221, 221);
    border-right: 1px solid rgb(221, 221, 221);
    border-top: 0px none rgb(51, 51, 51);
    box-sizing: border-box;
    text-align: left;
  }

  td {
    padding: 6px;
    vertical-align: top;
    width: 14%;

    border: 1px solid #ddd;
    border-top-color: rgb(221, 221, 221);
    border-top-style: solid;
    border-top-width: 1px;
    border-right-color: rgb(221, 221, 221);
    border-right-style: solid;
    border-right-width: 1px;
    border-bottom-color: rgb(221, 221, 221);
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-left-color: rgb(221, 221, 221);
    border-left-style: solid;
    border-left-width: 1px;
  }

  .calendar-heading nav {
    display: inline-block;
  }

  .day {
    height: 80px;
  }

  .wday-0 {}
  .wday-1 {}
  .wday-2 {}
  .wday-3 {}
  .wday-4 {}
  .wday-5 {}
  .wday-6 {}

  .today {
    background: #FFFFC0
  }

  .past {}
  .future {}

  .start-date {}

  .prev-month {
    background: #DDD;
  }
  .next-month {
    background: #DDD;
  }
  .current-month {}

  .has-events {}
}
