/* 페이지네이션 공통 스타일 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    padding-bottom: 50px;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-radius: 5px;
}

.page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.page-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
}

.page-link.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* 페이지네이션 생략 표시 */
.pagination-ellipsis {
    color: #666;
    padding: 0 10px;
    font-size: 14px;
}

/* 페이지네이션 변형 - 작은 여백 */
.pagination.compact {
    margin-top: 30px;
    padding-bottom: 30px;
}

/* 페이지네이션 변형 - 큰 크기 */
.pagination.large .page-link {
    width: 50px;
    height: 50px;
    font-size: 16px;
}

/* 반응형 */
@media (max-width: 768px) {
    .pagination {
        gap: 5px;
        margin-top: 30px;
        padding-bottom: 30px;
    }
    
    .page-link {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .pagination.large .page-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}