/* ===============================
   view-popup.css（閲覧用）
   =============================== */

/* ▼ ポップアップ背景 */
#popup-view {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ▼ ポップアップ本体 */
#popup-view .popup-content {
  background: #fff;
  padding: 20px;
  width: 80%;
  max-width: 350px;
  border-radius: 12px;
  text-align: center;
}

/* ▼ 日付 */
#popup-view-date {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ▼ イベント一覧 */
#popup-view-events {
  font-size: 16px;
  margin-bottom: 20px;
}

/* ▼ イベント1件 */
.event-item {
  padding: 10px;
  margin-bottom: 8px;
  background: #f0f8ff;
  border-radius: 6px;
  border: 1px solid #cce4ff;
  text-align: left;
  font-size: 15px;
}

/* ▼ 予定なし */
.no-event {
  padding: 10px;
  background: #eee;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* ▼ 戻るボタン */
#popup-view-close-btn {
  width: 100%;
  padding: 12px 0;
  font-size: 18px;
  background: #1e90ff;
  color: white;
  border: none;
  border-radius: 8px;
}
