* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth;
}

body {
    background-image: url('../images/body.jpg');
    background-attachment: fixed;
    background-repeat:no-repeat;
    background-size: cover;
    
}

.pagination-item {
    list-style: none;
    padding: 0.5rem;
}

.pagination-link {
    color: #4a5568;
    text-decoration: none;
    padding: 0.5rem;
    transition: background-color 0.3s;
}

.pagination-link:hover {
    background-color: #e2e8f0;
}

.active {
    font-weight: bold;
}

.disabled {
    color: #a0aec0;
    pointer-events: none;
    cursor: not-allowed;
}