* {
    box-sizing: border-box;
}

body {
	font-family:'Noto Sans KR',sans-serif;font-weight:400;
}

/* --- 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;
}