.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 15px;
}

.pagination a {
    color: #333;
    font-size: 16px;
    padding: 8px 12px;
    border: 2px solid #7f00ff;
    border-radius: 6px;
    text-decoration: none;
    background: white;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}
body.dark-mode .pagination a{
    background:#333;
    color:#fff;
    border: 2px solid #00c6ff;
}
.pagination a:hover {
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
body.dark-mode .pagination a:hover {
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.pagination .current {
    color: white;
    background: linear-gradient(to right, #7f00ff, #00c6ff);
    border-radius: 50%;
    width: 50px; 
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.pagination a:first-child, 
.pagination a:last-child {
    border-radius: 50px;
}
