
        /* Estilo para el modal */
        #customConfirm, #customConfirmCaducar{
            display: none; /* Ocultar inicialmente */
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
        }
        #customConfirm .modal-content,   #customConfirmCaducar .modal-content{
            background-color: #fff;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 50%;
            border-radius: 10px;
            text-align: center;
        }
        #customConfirm .btnConfirmar, #customConfirmCaducar .btnConfirmar {
            padding: 10px 20px;
            margin: 10px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
        }
        #customConfirm .btn-success, #customConfirmCaducar .btn-success {
            background-color: #28a745;
            color: white;
        }
        #customConfirm .btn-danger, #customConfirmCaducar .btn-danger {
            background-color: #dc3545;
            color: white;
        }
