/* style.css */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /* 和風な明朝体フォントを指定 */
    font-family: 'Shippori Mincho', serif;
    /* 木目のような薄茶色を全体の背景色に設定 */
    background-color: #d4c4a8;
}

#map {
    width: 100%;
    height: 100%;
    background-color: #d4c4a8; /* マップの読み込み前の背景色 */
}

/* プルダウンメニューのスタイル */
.controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000; /* Leafletのマップより上に表示 */
    background-color: rgba(245, 240, 230, 0.9);
    padding: 8px;
    border: 2px solid #8b7355;
    border-radius: 4px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

#city-selector {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 16px;
    color: #3e3222;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

/* 地図のデザインはデフォルトにするためフィルターは削除 */

/* ポップアップの和風デザイン（和紙風の背景と落ち着いた茶色の枠線） */
.leaflet-popup-content-wrapper {
    background-color: #f5f0e6;
    color: #3e3222;
    border: 2px solid #8b7355;
    border-radius: 4px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.leaflet-popup-tip {
    background-color: #f5f0e6;
    border: 1px solid #8b7355;
}

.leaflet-popup-content {
    /* ポップアップ内はゴシック体に変更 */
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 15px;
}

/* ポップアップ内の都市名のスタイル */
.popup-title {
    /* ポップアップ内はゴシック体に変更 */
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    font-size: 18px;
    font-weight: 700;
    border-bottom: 1px solid #8b7355;
    margin-bottom: 10px;
    padding-bottom: 6px;
    text-align: center;
}

/* データ項目のスタイル */
.popup-data {
    margin: 6px 0;
}

/* 読み込み中の文字のスタイル */
.loading {
    text-align: center;
    color: #8b7355;
    margin-top: 10px;
}
