/**
 * Pagination Stylesheet
 * Responsive and Modern UI
 */

.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #ffffff;
    color: #0d47a1;
    border: 1px solid #0d47a1; /* Shorthand border */
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #e3f2fd;
}

.pagination-btn.active {
    background: #0d47a1;
    color: #ffffff;
    pointer-events: none;
}

.pagination-btn.disabled {
    color: #cccccc;
    border-color: #cccccc;
    pointer-events: none;
    background: #f9f9f9;
}