/* Location Page Styles */
.map_wrap {
    width: 100%;
    margin: 0 auto;
    display: block;
}

.g_map {
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

#map {
    width: 100% !important;
    height: 400px !important;
}

.map_info {
    width: 100%;
    margin-top: 40px;
}

.con_box {
    width: 100%;
    margin-bottom: 30px;
}

.con_box h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #48683f;
}

.con_box table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.con_box table th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font-size: 14px;
    width: 120px;
    vertical-align: middle;
}

.con_box table td {
    padding: 15px 20px;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 1.5;
    vertical-align: middle;
}

.con_box table tr:last-child th,
.con_box table tr:last-child td {
    border-bottom: none;
}

.con_box table a {
    color: #48683f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.con_box table a:hover {
    color: #2c5a3f;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .g_map {
        height: 300px;
        margin-bottom: 30px;
    }

    #map {
        height: 300px !important;
    }

    .map_info {
        margin-top: 30px;
    }

    .con_box h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .con_box table th,
    .con_box table td {
        padding: 12px 15px;
        font-size: 13px;
    }

    .con_box table th {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .con_box table {
        font-size: 12px;
    }

    .con_box table th,
    .con_box table td {
        padding: 10px 12px;
    }

    .con_box table th {
        width: 80px;
    }

    .con_box h2 {
        font-size: 18px;
    }
}

/* 카카오맵 인포윈도우 스타일 */
.map_wrap .kakao-infowindow-content a {
    color: #48683f !important;
    text-decoration: none !important;
    font-weight: bold !important;
    transition: all 0.3s ease !important;
}

.map_wrap .kakao-infowindow-content a:hover {
    text-decoration: underline !important;
    color: #2c5a3f !important;
}