/**
 * TERA Google Map Stylesheet
 * 
 * このスタイルは基本的なものです。
 * テーマのstyle.cssで上書きしてカスタマイズしてください。
 * 
 * @package TERA_Google_Map
 * @version 1.0.0
 */

/* ========================================
   地図コンテナ
   ======================================== */

.tera-google-map-single,
.tera-google-map-list {
    position: relative;
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.tera-google-map-list {
    height: 500px;
}

/* ========================================
   情報ウィンドウ
   ======================================== */

.tera-gmap-info {
    padding: 10px;
    max-width: 250px;
}

.tera-gmap-info-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.tera-gmap-info-address {
    margin: 0 0 10px 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.tera-gmap-info-link {
    display: inline-block;
    padding: 6px 12px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    transition: background-color 0.2s ease;
}

.tera-gmap-info-link:hover {
    background-color: #005a87;
}

/* ========================================
   エラーメッセージ
   ======================================== */

.tera-gmap-error {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 20px;
    text-align: center;
    color: #d63638;
    font-size: 14px;
    background-color: #f9f9f9;
}

/* ========================================
   レスポンシブ対応
   ======================================== */

@media screen and (max-width: 768px) {
    .tera-google-map-single,
    .tera-google-map-list {
        height: 300px;
    }
    
    .tera-gmap-info {
        max-width: 200px;
    }
    
    .tera-gmap-info-title {
        font-size: 14px;
    }
    
    .tera-gmap-info-address {
        font-size: 12px;
    }
}

/* ========================================
   カスタマイズ例
   ======================================== */

/*
テーマのstyle.cssに以下のようなコードを追加することで
地図のスタイルをカスタマイズできます:

例1: 地図の高さを変更
.tera-google-map-single {
    height: 600px;
}

例2: 地図に影をつける
.tera-google-map-single,
.tera-google-map-list {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

例3: 情報ウィンドウのスタイルを変更
.tera-gmap-info-link {
    background-color: #ff6b6b;
}

例4: 角丸を変更
.tera-google-map-single {
    border-radius: 12px;
}

例5: カスタムクラスを使用
.my-custom-map {
    height: 700px;
    border: 3px solid #000;
}
*/
