/*页码*/
.pagination-container {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: end;
    margin-top: 30px;
}

.page-btn {
    height: 40px;
    width: 40px;
    border-radius: 10px;
    background-color: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

.page-btn:hover:not(:disabled) {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-number {
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-number:hover {
    background-color: #e5e7eb;
}

.pagination-container select {
    border-radius: 10px;
    background-color: #f9fafb;
    border: none;
    height: 40px;
    padding: 0 10px;
}
