﻿.card-repeat {
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(173, 216, 230, 0.2));
    border: 1px solid rgba(100, 149, 237, 0.4);
    cornflower blue backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
    color: #2c3e50;
    padding: 15px;
    margin: 15px auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card-repeat:hover {
        transform: translateY(-5px);
        box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.35);
    }
