/* 공지사항 목록 페이지 스타일 */
.notice-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header span {
    font-size: 1.5rem;
    font-weight: bold;
}

.notice-search {
    display: flex;
    gap: 0.5rem;
}

.notice-search form {
    display: flex;
    gap: 0.5rem;
}

.notice-search input {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 250px;
}

.notice-search button {
    padding: 0.5rem 1rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.notice-list {
    margin-bottom: 2rem;
}

.notice-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.notice-item:hover {
    background-color: #f8f9fa;
}

.notice-info {
    flex: 1;
}

.notice-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.notice-title a {
    color: #333;
    text-decoration: none;
}

.notice-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.notice-arrow {
    color: #999;
}

.notice-empty {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.page-num, .page-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.page-num.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.page-btn:hover, .page-num:hover {
    background: #f8f9fa;
}

/* 공지사항 상세 보기 페이지 스타일 */
.notice-view {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 2rem;
}

.notice-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.notice-content {
    min-height: 200px;
    line-height: 1.6;
    color: #333;
}

.notice-actions {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-back {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
}

.btn-back:hover {
    background-color: #e9ecef;
} 