/* Soft Kırmızı - Pastel Ton */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    margin: 0;
    list-style: none;
    flex-wrap: wrap;
}

.pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    background: #ffffff;
    border: 2px solid #fed7d7;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.pagination li a:hover {
    background: #fff5f5;
    border-color: #feb2b2;
    color: #e53e3e;
    transform: translateY(-2px);
}

.pagination li.active a {
    background: #e53e3e;
    color: white;
    border-color: #e53e3e;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.2);
    transform: scale(1.05);
    font-weight: 600;
}

@media (max-width: 768px) {
    .pagination li a { min-width: 36px; height: 36px; padding: 0 10px; font-size: 12px; }
}