body {
    margin: 0;
    background: #f8f5ee;
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    color: #2f2f2f;
}

.notice-wrap {
    width: 100%;
    margin: 0 auto 80px;
}

/* 제목 영역 */
.notice-title {
    width: 78%;
    height: 150px;
    margin: 0 auto;
    padding-top: 32px;
    text-align: center;
}

.notice-label {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 999px;
    background: #efe7d8;
    color: #7a6f5c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
}

.notice-title h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.4px;
    color: #2f2b25;
}

/* 게시판 전체 박스 */
.notice-content {
    width: 78%;
    margin: -5px auto 0;
    padding: 28px 36px 34px;
    background: #fffdf8;
    border: 1px solid #eee7dc;
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(84, 70, 50, 0.08);
}

/* 검색창 */
.notice-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 22px;
}

.notice-search-box form {
    width: 360px;
    height: 44px;
    padding: 0 16px 0 20px;
    border: 1px solid #e2d8c9;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
}

.notice-search-box input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: #333;
}

.notice-search-box input::placeholder {
    color: #aaa096;
}

.notice-search-box button {
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

/* 테이블 박스 */
.table-radius-box {
    height: 535px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #eee8de;
}

/* 테이블 */
.notice-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    table-layout: fixed;
}

.notice-table th {
    height: 54px;
    background: #f1ece3;
    color: #2f2f2f;
    font-size: 15px;
    font-weight: 700;
    border: none;
}

.notice-table td {
    height: 60px;
    border: none;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.notice-table th:nth-child(1),
.notice-table td:nth-child(1) {
    width: 9%;
}

.notice-table th:nth-child(2),
.notice-table td:nth-child(2) {
    width: 49%;
}

.notice-table th:nth-child(3),
.notice-table td:nth-child(3) {
    width: 13%;
}

.notice-table th:nth-child(4),
.notice-table td:nth-child(4) {
    width: 16%;
}

.notice-table th:nth-child(5),
.notice-table td:nth-child(5) {
    width: 13%;
}

.notice-table td:nth-child(2) {
    text-align: left;
    padding-left: 28px;
}

.notice-table a {
    color: #2f2f2f;
    text-decoration: none;
}

.notice-table a:hover {
    color: #6f7f55;
    font-weight: 600;
}

.no-result {
    height: 130px !important;
    color: #9b948b !important;
    font-size: 15px !important;
}

/* 테이블 밖 페이징 + 공지등록 */
.paging-box {
    position: relative;
    width: 100%;
    height: 60px;
    margin-top: 18px;
}

.page-menu {
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    white-space: nowrap;
}

.notice-write-btn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    background: #6f7f55;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.notice-write-btn:hover {
    background: #5d6d47;
}

.page-menu a,
.page-menu b,
.page-menu strong,
.page-menu span {
    display: inline-block;
    min-width: 34px;
    height: 34px;
    line-height: 34px;
    margin: 0 4px;
    border-radius: 50%;
    color: #6d665d;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

.page-menu a:hover {
    background: #f1ece3;
    color: #6f7f55;
}

.page-menu b,
.page-menu strong,
.page-menu .now {
    background: #6f7f55;
    color: #fff;
}