/* CourtRent Pagination Component
 * Standardized pagination styles with backwards compatibility
 */

/* Container */
.cb-pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Main pagination list */
.cb-pagination,
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 4px;
}

/* Individual page items */
.cb-pagination-item,
.cb-pagination li,
.pagination li {
    margin: 0;
}

/* Page links */
.cb-pagination-link,
.cb-pagination a,
.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    color: #4a5568;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    background: white;
}

.cb-pagination-link:hover,
.cb-pagination a:hover,
.pagination a:hover {
    background-color: #e2e8f0;
    border-color: #cbd5e0;
}

/* Active page */
.cb-pagination-active a,
.cb-pagination-active .cb-pagination-link,
.cb-pagination .active a,
.pagination .active a {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.cb-pagination-active a:hover,
.cb-pagination .active a:hover,
.pagination .active a:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Disabled state */
.cb-pagination-disabled a,
.cb-pagination .disabled a,
.pagination .disabled a {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.cb-pagination-disabled a:hover,
.cb-pagination .disabled a:hover,
.pagination .disabled a:hover {
    background-color: white;
}

/* Ensure z-index doesn't cause issues */
.page-item.active,
.cb-pagination-active {
    z-index: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cb-pagination-link,
    .cb-pagination a,
    .pagination a {
        min-width: 36px;
        height: 36px;
        font-size: 1.2rem;
        padding: 0 10px;
    }

    .cb-pagination-container {
        margin-top: 1rem;
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .cb-pagination-link,
    .cb-pagination a,
    .pagination a {
        min-width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
}