/* 공통 스타일 */
.box.post {
    text-align: center;
}

/* 지도 이미지 스타일 */
.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.map-image {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

/* 주소 스타일 */
.address-container {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.address-text {
    margin: 0;
    line-height: 1.6;
}

/* 지도 버튼 스타일 */
.map-button-container {
    margin-top: 15px;
}

.map-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, transform 0.2s ease;
}

.map-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}

/* 반응형 스타일 */
@media (max-width: 600px) {
    .main-title {
        font-size: 20px;
    }

    .address-container {
        font-size: 14px;
        padding: 10px;
    }

    .map-button {
        font-size: 14px;
        padding: 10px 15px;
    }
}
