.simple-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    width: 100%;
}

.nav-btn {
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #000000;
    padding: 8px 20px;
    border-radius: 2px;
    font-size: 13px;
    width: 110px;
    height: 32px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    margin: 0 2px;
    justify-content: center;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.nav-btn:hover:not(.disabled) {
    background: #f0f0f0;
    color: #000000;
    text-decoration: none;
}

.nav-btn:active:not(.disabled) {
    background: #e0e0e0;
}

.nav-btn.disabled {
    background: #666666;
    color: #999999;
    cursor: not-allowed;
    pointer-events: none;
}

.prev-btn svg {
    margin-right: 4px;
    width: 16px;
    height: 16px;
}

.next-btn svg {
    margin-left: 4px;
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .simple-pagination {
        padding: 15px;
    }
    
    .nav-btn {
        width: 100px;
        font-size: 12px;
        padding: 6px 16px;
    }
}

@media (max-width: 480px) {
    .simple-pagination {
        padding: 15px 10px;
    }
    
    .nav-btn {
        width: 90px;
        font-size: 11px;
        padding: 6px 12px;
    }
}