.pagination-btn {
            width: 52px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e5e7eb;
            background: #fff;
            color: #222;
            font-size: 14px;
            font-family: inherit;
            font-weight: 400;
            border-radius: 0;
            transition: background 0.2s, color 0.2s, border 0.2s;
            text-decoration: none;
            box-sizing: border-box;
        }
        .pagination-btn--active {
            background: #039db6;
            color: #222;
            font-weight: 600;
            border: 1.5px solid #039db6;
        }
        .pagination-btn--disabled {
            pointer-events: none;
            opacity: 0.5;
        }
        .pagination-btn:not(:last-child) {
            margin-right: 0;
        }
        @media (max-width: 640px) {
            .pagination-btn { width: 40px; height: 40px; font-size: 1rem; }
        }