.page-header-ph {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
    height: 25vh; /* fixed height */
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: center; /* vertical centering */
    text-align: center;
}

.header-ph-h4 {
    margin: 0;
    padding-top: 10vh; /* remove extra padding */
}

#nearbyPlacesContainer select,
#nearbyPlacesContainer input {
  height: 38px;
}

.pagination .page-item .page-link {
    color: #0d6efd;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin: 0 3px;
    padding: 8px 14px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.pagination .page-item .page-link:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.range-wrapper {
    position: relative;
    width: 100%;
    padding-top: 25px;     /* top spacing for label */
    padding-bottom: 30px;  /* extra space for price labels */
    overflow: visible;
}

/* Grey track */
.slider-track {
    position: absolute;
    top: 55px;        /* lower track */
    left: 0;
    width: 100%;
    height: 8px;
    background: #d3d3d3;
    border-radius: 4px;
    --min: 0%;
    --max: 100%;
    z-index: 1;
}

/* Blue selected area */
.slider-track::before {
    content: "";
    position: absolute;
    top: 0;
    height: 8px;
    background: #0d6efd;
    border-radius: 4px;
    left: var(--min);
    right: calc(100% - var(--max));
    z-index: 2;
}

/* Slider inputs */
.form-range {
    position: absolute;
    top: 45px;            /* aligns thumb with track */
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Slider thumb */
.form-range::-webkit-slider-thumb {
    pointer-events: auto;
    height: 20px;
    width: 20px;
    background: #0d6efd;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

/* Prevent Bootstrap override */
.form-range::-webkit-slider-runnable-track {
    background: transparent !important;
}