/* 게시판 스타일 */
body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f8f9fa;
}

.board-container {
    background-color: white;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.post-title {
    font-weight: 600;
}

.category-badge {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    margin-right: 10px;
}

.category-공지사항 {
    background-color: #cfe2ff;
    color: #084298;
}

.category-자유게시판 {
    background-color: #d1e7dd;
    color: #0a3622;
}

.category-질문 {
    background-color: #fff3cd;
    color: #664d03;
}

.category-정보 {
    background-color: #ffe5d0;
    color: #664d03;
}

.post-meta {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 15px;
}

.post-content {
    min-height: 200px;
    margin: 20px 0;
}

.pagination {
    justify-content: center;
}

/* 폼 스타일 */
.form-group {
    margin-bottom: 20px;
}

.text-danger {
    display: block;
    margin-top: 5px;
    font-size: 14px;
}

/* 버튼 그룹 */
.btn-group-custom {
    margin: 20px 0;
}
