/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

/* Pagination List */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Pagination Items */
.pagination .page-item {
    margin: 0 5px; /* Spacing between buttons */
}

.pagination .page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%; /* Circular buttons */
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #444; /* Neutral text color */
    background-color: #f5f5f5; /* Light gray background */
    border: 1px solid #ddd; /* Light border for the buttons */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Active Page */
.pagination .page-item.active .page-link {
    background-color: #4caf50; /* Active color (green) */
    color: white; /* White text for active page */
    border-color: #4caf50;
}

/* Hover Effect */
.pagination .page-link:hover {
    background-color: #e0e0e0; /* Slightly darker gray on hover */
    border-color: #bbb;
    text-decoration: none;
    color: #000; /* Darker text on hover */
}

/* Disabled Button (Previous/Next) */
.pagination .page-item.disabled .page-link {
    background-color: #f5f5f5; /* Keep the disabled button light */
    color: #aaa; /* Gray text for disabled */
    cursor: not-allowed;
}

/* Next/Previous Arrow */
.pagination .page-link::before {
    display: inline-block;
    font-size: 16px;
}

/* Spacing for Dots */
.pagination .dots {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #444;
    margin: 0 5px;
    cursor: default;
}
