/* Custom Pagination Styles */
.pagination {
    margin-bottom: 0;
    padding: 10px 0;
}

.page-item:first-child .page-link {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.page-item:last-child .page-link {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

.page-link {
    color: #6e8efb;
    margin: 0 3px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.page-link:hover {
    color: #5d7ce0;
    background-color: rgba(110, 142, 251, 0.1);
    z-index: 1;
}

.page-item.active .page-link {
    background-color: #6e8efb;
    border-color: #6e8efb;
}

.page-item.disabled .page-link {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

@media (max-width: 576px) {
  .pagination {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-bottom: 0;
    width: 100%;
    justify-content: flex-start !important;
  }
  .pagination .page-item {
    flex: 0 0 auto;
  }
  .pagination .page-link {
    min-width: 38px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    font-size: 1rem;
  }
} 