#searchForm {
    display: flex;
    align-items: center; /* 수직 정렬 */
    gap: 8px; /* input과 버튼 사이 간격 */
}

.section__wrap {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.search__wrap {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.search__total {
    font-size: 1.2em;
}

.input__box {
    display: flex;
}

.srch_keyword {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 200px;
}

.btn__search {
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.board-list__wrap {
    margin-top: 20px;
}

.board-list__list {
    list-style-type: none;
    padding: 0;
}

.board-list__item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.board-list__box {
    flex: 1;
    font-weight: bold;
}

.board-list__content {
    flex: 3;
}

.board-list__title {
    text-decoration: none;
    color: #333;
}

.board-list__title:hover {
    text-decoration: underline;
}

.board-list__date {
    color: #888;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    margin: 0 5px;
    padding: 5px 10px;
    color: #007bff;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a.active {
    background-color: #007bff;
    color: white;
}

.pagination a:hover {
    background-color: #ddd;
}