body {
    font-family: 'Noto Sans KR', sans-serif;
    margin: 0;
    padding: 20px;
    background: #f8f9fa;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.add-form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}
input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    box-sizing: border-box;
}
.btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.btn:hover {
    background: #0056b3;
}
.page-list {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}
th {
    background: #f8f9fa;
    font-weight: 500;
}
.message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.success {
    background: #d4edda;
    color: #155724;
}
.error {
    background: #f8d7da;
    color: #721c24;
}
.btn-danger {
    background: #dc3545;
    margin-left: 5px;
}
.btn-danger:hover {
    background: #c82333;
}
td .btn {
    padding: 6px 12px;
    font-size: 13px;
} 



/* 전체 레이아웃 */
/* body {
    margin: 0 auto;
    padding: 0;
    font-family: Arial, sans-serif;
    max-width: 1024px;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

/* 상단 네비게이션 */
.top-nav {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

.top-nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
}

/* 로고 및 메인 네비게이션 */
.logo {
    padding: 20px;
    text-align: center;
    width: 100%;
}

/* 메인 네비게이션 */
.main-nav {
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 5px 0; /* 조정된 패딩 */
    width: 100%;
    flex-wrap: wrap;
}
.main_menu{
    padding-left:8px !important;
    //border:1px solid red;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
}

/* 서브메뉴 스타일 */
.sub-menu {
    display: flex;
    flex-direction: column;
    padding: 10px; /* 조정된 패딩 */
    width: 180px; /* 서브메뉴 너비 조정 */
    background: #f9f9f9;
    margin-right: 10px; /* 메인 콘텐츠와의 간격 */
    box-sizing: border-box; /* 패딩과 테두리 포함 */
}

.sub-menu a {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
    margin: 5px 0;
}
/* 콘텐츠 영역 */
.content {
    display: flex;
    justify-content: center; /* 가로 방향 가운데 정렬 */
    align-items: flex-start; /* 세로 방향 상단 정렬 */
    padding: 20px; /* 조정된 패딩 */
    width: 1024px; /* 고정 너비 */
    box-sizing: border-box; /* 패딩과 테두리 포함 */
    margin: 0 auto; /* 좌우 마진 자동으로 설정하여 가운데 정렬 */
}

.right_box {
    display: flex; /* flexbox 활성화 */
    flex-direction: column; /* 세로 방향으로 정렬 */
    width: 80%; /* 너비 조정 */
}

.left_box {
    display: flex; /* flexbox 활성화 */
    flex-direction: row; /* 가로 방향으로 정렬 */
    width: 20%; /* 너비 조정 */
}


/* 내용 영역 */
.text-content {
    flex: 1; /* 남은 공간을 차지 */
    line-height: 1.6;
    width: 100%; /* 너비 조정 */
}

.image-content {
    flex: 1; /* 남은 공간을 차지 */
}

.image-content img {
    max-width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: block;
}

/* 반응형 미디어 쿼리 */
@media (max-width: 768px) {
    .content {
        flex-direction: column; /* 모바일에서는 세로 방향으로 정렬 */
        padding: 10px; /* 모바일에서는 패딩 줄이기 */
    }

    .main-nav {
        flex-direction: column;
        align-items: center;
    }

    .sub-menu {
        width: 100%; /* 모바일에서는 전체 너비 */
        margin: 0; /* 간격 제거 */
    }
}






.layout-container {
    //display: grid; /* 기본적으로 그리드로 설정 */
    grid-template-columns: 1fr 1fr; /* 기본적으로 2열 */
    gap: 10px; /* 열 사이의 간격 */
}
.layout-column {
    //min-height: 50px;
    min-height: auto !important;
    height:auto !important;
    padding: 0; /* 안쪽 여백 제거 */
    margin: 0; /* 바깥 여백 제거 */
    background: #fff;
    border: none; /* 테두리 제거 */
    //box-sizing: border-box; /* 패딩과 보더를 포함하여 너비 계산 */
}
img {
    max-width: 100%;
    height: auto;
}
.no-content {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-top: 50px;
}
/* 모바일에서 그리드 제거 및 flex로 변경 */
@media (max-width: 768px) {
    .layout-container {
        display: flex; /* Flexbox로 변경 */
        flex-direction: column; /* 세로로 정렬 */
    }
}