.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.pagination {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pagination button,
.pagination select {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    transition: all 0.2s ease;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
}

.pagination button:hover,
.pagination select:hover {
    background-color: #f5f5f5;
    border-color: #cccccc;
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
}

.pagination button:active {
    box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.3);
}

.pagination button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.pagination select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333333'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    padding-right: 30px;
}

#pageInfo {
    background-color: #f5f5f5;
    color: #333333;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .pagination-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .pagination button,
    .pagination select {
        width: 100%;
    }
}
