.liquid-glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 1rem;
    margin: 1rem;
    overflow: hidden;
    box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Effet de lumière liquide animée */
.liquid-glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle at 30% 40%, rgba(245, 230, 200, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    /*animation: liquidMove 8s ease-in-out infinite;*/
    pointer-events: none;
}

/* Reflet lumineux en haut */
.liquid-glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.4) 20%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.4) 80%,
            transparent
    );
    filter: blur(1px);
}

@keyframes liquidMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(10%, 10%) rotate(120deg);
    }
    66% {
        transform: translate(-5%, 15%) rotate(240deg);
    }
}

.card-checkbox {
    padding: 0 .5rem;
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.card-checkbox .form-check {
    display: none;
}

.card-checkbox :hover {
    cursor: pointer;
}

.card-checkbox input[type="checkbox"] {
    visibility: hidden;
}

.checkmark-circle {
    width: 25px;
    height: 25px;
    background-color: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.checkmark {
    width: 10px;
    height: 7px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}