/* ========================================
   사업장 위치 컨테이너
   ======================================== */
.location-container {
    max-width: 1000px;
    margin: 50px auto;
    background-color: white;
    padding: 60px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.location-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid #333;
}


/* ========================================
   정보 테이블
   ======================================== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.info-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.info-table th {
    width: 150px;
    padding: 20px;
    text-align: left;
    font-weight: bold;
    background-color: #f9f9f9;
    font-size: 16px;
}

.info-table td {
    padding: 20px;
    font-size: 16px;
    color: #555;
}


/* ========================================
   지도 컨테이너
   ======================================== */
.map-container {
    width: 100%;
    height: 450px;
    border: 1px solid #ddd;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}


/* ========================================
   반응형 디자인
   ======================================== */
@media (max-width: 768px) {
    .location-container {
        padding: 40px 20px;
        margin: 20px;
    }
    
    .location-title {
        font-size: 24px;
    }
    
    .info-table th,
    .info-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .info-table th {
        width: 100px;
    }
    
    .map-container {
        height: 350px;
    }
}