/* 시설개요 스타일 */
.facility-overview {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
    align-items: stretch;
}

.facility-image-container {
    flex: 1;
    min-width: 300px;
    height: 350px !important; /* 고정 높이 설정 */
}

.facility-image {
    width: 100%;
    height: 350px !important; /* 고정 높이 설정 */
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.facility-image:hover {
    transform: scale(1.02);
}

.facility-info-container {
    flex: 1;
    min-width: 300px;
    height: 350px !important; /* 고정 높이 설정 */
}

.facility-table {
    font-size:22px;
	width: 100%;
    height: 350px !important; /* 고정 높이 설정 */
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.facility-table th, 
.facility-table td {
    padding: 1px 1px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.facility-table td {
    border-right: 1px solid #e0e0e0;
    text-align: center;
}

.facility-table th {
    background-color: #0D97EB;
    color: #fff;
    font-weight: 600;
    border-right: 1px solid #2da8f5;
    text-align: center;
}

.facility-table th:last-child,
.facility-table td:last-child {
    border-right: none;
}

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

/* 서비스 테이블 스타일 */
.service-table td:nth-child(2) {
    text-align: left;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .facility-overview {
        flex-direction: column;
    }
    
    .facility-image-container,
    .facility-info-container {
        width: 100%;
    }
} 

/* 시설 내부 사진 갤러리 */
.facility-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .facility-gallery {
        grid-template-columns: 1fr;
    }
} 

/* 직원현황 테이블 스타일 */
.sm_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.sm_table th {
    background-color: #0D97EB !important;
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 12px 8px;
    border: 1px solid #2da8f5;
}

.sm_table td {
    padding: 10px 8px;
    text-align: center;
    border: 1px solid #ddd;
}

.sm_table.center td {
    text-align: center;
} 