* {
    box-sizing: border-box;
}

body {
	font-family: 'Noto Sans KR', sans-serif;
	/* font-family: 'Malgun Gothic', sans-serif; */
}

/* 모든 요소와 가상 요소가 부모의 폰트를 상속받도록 함 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video,
input, select, textarea, button {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: inherit;
    color: inherit;
}

.sidebar .nav .nav-item .nav-link span.menu-title {
    font-size: inherit;
}

/* --- pagination.js 페이지네이션 컴포넌트용 파일 스타일 --- */
.pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.pagination-container a {
    text-decoration: none;
    color: #333;
    padding: 0.6em 0.7em;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: background-color 0.2s;
    user-select: none;
    font-size: 1em;
}
.pagination-container a:hover {
    background-color: #f5f5f5;
    text-decoration: none;
    color: #333;
}
.pagination-container a.current {
    background-color: #333;
    color: white;
    border-color: #333;
    font-weight: bold;
}
.pagination-container a.disabled {
    color: #ccc;
    pointer-events: none; /* 클릭 안되게 설정 */
}

@media screen and (max-width: 400px) {
	.pagination-container a:nth-child(2),
    .pagination-container a:nth-last-child(2) {
        display: none;
    }
}


/* 보여주지 않을 요소들 */
.is-hidden {
    display: none !important;
}

button {
	user-select: none;
	padding: 8px 16px;
	background-color: black;
	color: white;
    cursor: pointer;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    font-size: 1em;
}

/* 옅은 회색 = #ddd */

.btn_submit {
	background-color: #007BFF;
}
.btn_submit:hover {
	background-color: #0069D9;
}
.btn_modify {
    background-color: #28a745;
}
.btn_modify:hover {
    background-color: #218838;
}
.btn_delete {
    background-color: #dc3545;
}
.btn_delete:hover {
    background-color: #c82333;
}
.btn_list, .btn_cancel {
	background-color: #6c757d;
}
.btn_list:hover, .btn_cancel:hover {
	background-color: #5a6268;
}