* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Pretendard", system-ui, sans-serif;
    background: #ffffff;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; cursor: pointer; }

header { height: 0; visibility: hidden; }

/* 메뉴바 */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #4b0082;
    color: #fff;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.nav-inner {
    width: 100%;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-center ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-right { cursor: pointer; display:flex; align-items:center; gap:14px; }

/* 페이지 공통 */
.page {
    display: none;
    padding-top: 80px;
    padding: 40px;
    min-height: 100vh;
    background: #fff;
}

/* 홈 */
#home .box-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#home .gray-box {
    width: 20%;
    padding-bottom: 20%;
    background: #e5e5e5;
    border-radius: 14px;
}

/* ▼ 더 보기 버튼 스타일 */
.more-toggle {
    text-align: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 60px;
}

.more-toggle span {
    font-size: 1.1rem;
    margin-right: 4px;
}

/* 게시판 */
.board-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 100px;
}

.search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.search-box input {
    width: 70%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: #f9f9f9;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #f2f2f2;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 14px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

th { background: #e0e0e0; }

tr:hover { background: #eaeaea; }

.empty-page {
    font-size: 1.2rem;
    text-align: center;
    color: #444;
    margin-top: 120px;
}

/* 로그인/회원가입/마이페이지 공통 박스 */
#login, #register, #mypage { display: none; }

.login-box {
    width: 350px;
    margin: 120px auto;
    padding: 30px;
    border-radius: 14px;
    background: #f4f4f4;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 30px;
}

.login-box input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 12px;
    font-size: 1rem;
}

.login-box button {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: none;
    margin-top: 10px;
    background: #4b0082;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.login-links {
    margin-top: 40px;
    font-size: 0.75rem;
    color: #333;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.login-links span {
    color: #555;
}

.login-links a {
    color: #333;
}