/* Estilo para el radio button personalizado */
.figure-card {
    position: relative;
}

.figure-card .radio-check {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 22px;
    height: 22px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: transparent;
    z-index: 10;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Estilo cuando la tarjeta está seleccionada */
.figure-card.pintada .radio-check {
    background-color: rgba(40, 145, 154, 0.9);
}
