
    .modal-icon-container {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1.5rem;
    }
    .animated-check {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        display: none;
        justify-content: center;
        align-items: center;
    }
    .animated-check.success {
        background-color: #E8F5E9; /* Verde claro */
        border: 3px solid #4CAF50; /* Verde */
    }
    .animated-check.error {
        background-color: #FFEBEE; /* Rojo claro */
        border: 3px solid #F44336; /* Rojo */
    }
    .animated-check .check-icon, .animated-check .error-icon {
        font-size: 50px;
    }
    .check-icon {
        color: #4CAF50;
        animation: scale-up 0.5s ease-in-out;
    }
    .error-icon {
        color: #F44336;
        animation: scale-up 0.5s ease-in-out;
    }
    @keyframes scale-up {
        0% { transform: scale(0.5); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
    }
  